.ast-container, .ast-container-fluid
{
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a)
{
	text-decoration: none;
}

.vmo-input,
.vmo-select,
.vmo-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.2s ease;
	background: #ffffff;
	box-sizing: border-box;
}

.vmo-input:focus,
.vmo-select:focus,
.vmo-textarea:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Container */
.vmo-management-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #f8fafc;
	min-height: 80vh;
}
@media (max-width: 768px) {
	.vmo-management-container {
		padding: 16px;
	}
}

/* Header */
        .management-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 32px;
            color: white;
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .page-title {
            font-size: 28px;
            font-weight: 700;
            margin: 0 0 8px;
            display: flex;
            align-items: center;
            gap: 12px;
			color: white;
        }

        .page-subtitle {
            font-size: 16px;
            opacity: 0.9;
            margin: 0;
        }

        .header-stats {
            text-align: right;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255,255,255,0.2);
            padding: 16px 24px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.9;
        }

.vmo-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .header-text h1 {
            margin: 0 0 8px 0;
            font-size: 2.5em;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
			color: white !important;
        }

        .header-text p {
            margin: 0;
            color: #666;
            font-size: 1.1em;
        }

        .header-stats {
            display: flex;
            gap: 20px;
        }

        .stat-card {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            min-width: 120px;
            box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
        }

        .stat-number {
            display: block;
            font-size: 2em;
            font-weight: 700;
            line-height: 1;
        }

        .stat-label {
            display: block;
            font-size: 0.9em;
            margin-top: 5px;
            opacity: 0.9;
        }


.vmo-edit-container {
	/*max-width: 900px;*/
	margin: 0 auto;
	padding: 20px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background-color: #e5e7eb;
}

.vmo-card {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	padding: 24px;
	margin-bottom: 24px;
	border: 1px solid #e5e7eb;
}

.vmo-checkbox-item {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .vmo-checkbox-item:hover {
        background: #f3f4f6;
        border-color: #3b82f6;
    }

    .vmo-checkbox-item input[type="checkbox"] {
        margin-right: 8px;
        width: 16px;
        height: 16px;
        accent-color: #3b82f6 !important;
    }

    .vmo-checkbox-item label {
        margin: 0;
        cursor: pointer;
        font-size: 14px;
        color: #374151 !important;
    }

.vmo-checkbox-group {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
        margin-top: 8px;
    }

.vmo-file-input {
        width: 100%;
        padding: 12px;
        border: 2px dashed #cbd5e1;
        border-radius: 8px;
        background: #ffffff;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .vmo-file-input:hover {
        border-color: #3b82f6;
        background: #eff6ff;
    }



    .vmo-btn {
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        border: none;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 120px;
		height: 100%
    }

.vmo-navigation button
{
	height: 47.1px;
}

    .vmo-btn-primary {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white;
		height: 100%
    }

    .vmo-btn-primary:hover {
        background: linear-gradient(135deg, #2563eb, #1e40af);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
		color: white;
		height: 100%
    }

    .vmo-btn-secondary {
        
		background: linear-gradient(135deg, #f79957, #ff6363);
        color: white;
        border: 1px solid #d1d5db;
    }

    .vmo-btn-secondary:hover {
        background: linear-gradient(135deg, #e67322, #fe0000);
        color: white;
    }

.btn-outline {
            background: transparent;
            color: #64748b;
            border: 1px solid grey !important;
        }

        .btn-outline:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
            transform: translateY(-1px);
        }

/* Navigation */
.vmo-navigation {
	text-align: center;
	/*margin-top: 20px;*/
	margin-bottom: 20px;
	padding-top: 24px;
	/*border-top: 1px solid #e2e8f0;*/
	display: flex;
	gap: 15px;
	justify-content: center;	
	flex-wrap: wrap;
	width: fit-content;
	align-self: center;
	margin-left: auto;
	margin-right: auto;
}

.vmo-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px !important; 
    box-shadow: 0 20px 40px rgb(0 0 0 / 10%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vmo-form-row {
    display: block !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


/*Contact items*/

/* Contact Methods */
.vmo-contact-methods {
    margin-top: 20px;
}

.vmo-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}
@media (max-width: 768px) {
.vmo-contact-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
.vmo-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.vmo-contact-item.active {
    background: #f8f9fa;
    color: #333;
    cursor: pointer;
}

.vmo-contact-item.active:hover {
    background: #FF385C;
    color: white;
    border-color: #FF385C;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 56, 92, 0.2);
}

.vmo-contact-item.disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.vmo-contact-icon {
    font-size: 18px;
}

/*Host Reviews*/
.vmo-reviews-container {
        background: #ffffff;
        border-radius: 12px;
        padding: 32px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #e5e7eb;
        margin: 24px 0;
    }
    
    .vmo-reviews-header {
        margin-bottom: 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .vmo-reviews-title {
        font-size: 24px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .vmo-reviews-summary {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .vmo-average-rating {
        display: flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #fff, #f59e0b);
        padding: 8px 16px;
        border-radius: 25px;
        color: white;
        font-weight: 600;
    }
    
    .vmo-reviews-count {
        color: #6b7280;
        font-size: 14px;
    }
    
    .vmo-host-reviews {
        list-style: none;
        padding: 0 !important;
        margin: 0;
    }
    
    .vmo-review-item {
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 16px;
        transition: all 0.2s ease;
    }
    
    .vmo-review-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }
    
    .vmo-review-item:last-child {
        margin-bottom: 0;
    }
    
    .vmo-review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }
    
    .vmo-reviewer-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .vmo-reviewer-avatar {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 16px;
    }
    
    .vmo-reviewer-name {
        font-weight: 600;
        color: #1f2937;
        font-size: 16px;
    }
    
    .vmo-review-rating {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .vmo-stars {
        color: #fbbf24;
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .vmo-rating-number {
        background: #fbbf24;
        color: white;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        margin-left: 8px;
    }
    
    .vmo-review-content {
        color: #374151;
        line-height: 1.6;
        font-size: 14px;
    }
    
    .vmo-no-reviews {
        text-align: center;
        padding: 48px 24px;
        background: #f9fafb;
        border-radius: 12px;
        border: 2px dashed #d1d5db;
        color: #6b7280;
        margin: 24px 0;
    }
    
    .vmo-no-reviews p {
        margin: 0;
        font-size: 16px;
    }
    
    @media (max-width: 768px) {
        .vmo-reviews-container {
            padding: 24px 20px;
            margin: 16px 0;
        }
        
        .vmo-reviews-title {
            font-size: 20px;
        }
        
        .vmo-review-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }
        
        .vmo-reviews-summary {
            flex-direction: column;
            align-items: flex-start;
        }
    }
    
    
    .vmo-review-form-container {
        background: #ffffff;
        border-radius: 12px;
        padding: 32px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #e5e7eb;
        margin: 24px 0;
        /*max-width: 600px;*/
    }
    
    .vmo-review-form-title {
        font-size: 24px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .vmo-review-form-subtitle {
        color: #6b7280;
        margin-bottom: 24px;
        font-size: 14px;
    }
    
    .vmo-form-group {
        margin-bottom: 24px;
    }
    
    .vmo-form-label {
        display: block;
        font-weight: 500;
        color: #374151;
        margin-bottom: 8px;
        font-size: 14px;
    }
.vmo-label
{
	color: black !important;
}
    
    .vmo-rating-select {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #d1d5db;
        border-radius: 8px;
        font-size: 16px;
        background-color: #ffffff;
        transition: all 0.2s ease;
        color: #374151;
    }
    
    .vmo-rating-select:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    
    .vmo-textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #d1d5db;
        border-radius: 8px;
        font-size: 14px;
        min-height: 120px;
        resize: vertical;
        font-family: inherit;
        transition: all 0.2s ease;
        color: #374151;
    }
    
    .vmo-textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    
    .vmo-textarea::placeholder {
        color: #9ca3af;
    }
    
    .vmo-submit-btn {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
        padding: 12px 32px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .vmo-submit-btn:hover {
        background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
    
    .vmo-submit-btn:active {
        transform: translateY(0);
    }
    
    .vmo-message {
        margin-top: 16px;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
    }
    
    .vmo-success-message {
        background-color: #dcfce7;
        color: #166534;
        border: 1px solid #bbf7d0;
    }
    
    .vmo-error-message {
        background-color: #fef2f2;
        color: #dc2626;
        border: 1px solid #fecaca;
    }
    
    .vmo-info-message {
        background-color: #dbeafe;
        color: #1d4ed8;
        border: 1px solid #93c5fd;
        border-radius: 8px;
        padding: 16px;
        margin: 24px 0;
    }
    
    .vmo-star-icon {
        color: #fbbf24;
        font-size: 20px;
    }
    
    @media (max-width: 768px) {
        .vmo-review-form-container {
            padding: 24px 20px;
            margin: 16px 0;
        }
        
        .vmo-review-form-title {
            font-size: 20px;
        }
    }

/*End of Host Reviews*/

/*Page Header and Cover*/
.vmo-editor-page-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 32px 40px;
            text-align: center;
        }

        .vmo-editor-page-header h1 {
            margin: 0;
            font-size: 28px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
			color: white;
        }

        .vmo-editor-page-header .subtitle {
            margin-top: 8px;
            opacity: 0.9;
            font-size: 16px;
            font-weight: 400;
        }

/*Offer*/

.offer-status
{
	padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}