/* Customer Dashboard*/
/* Container Section */
.dashboard-wrapper {
    background-color: var(--dash-bg);
    min-height: 100vh;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;

}

/* Sidebar Styling */
.dash-sidebar {
    background: var(--dash-sidebar-bg);
    border-radius: var(--dash-radius);
    border: 1px solid var(--dash-border);
    box-shadow: var(--dash-shadow);

    overflow: hidden;

}

/* Profile Section */
.dash-user-profile {
    padding: 30px 24px;
    text-align: center;
    border-bottom: 1px solid var(--dash-border);

}

.dash-avatar-circle {
    width: 60px;
    height: 60px;
    background: var(--dash-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 12px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.dash-user-profile h4 {
    margin: 0;
    font-size: 14px;
    color: var(--dash-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash-user-profile .user-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--dash-text-main);
    margin-top: 4px;
}

/* Navigation Menu */
.dash-menu-list {
    list-style: none;
    padding: 20px 12px;
    margin: 0;
}

.dash-menu-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--dash-text-muted);
    text-transform: uppercase;
    padding: 10px 15px;
    letter-spacing: 0.5px;
}

.dash-menu-item {
    margin-bottom: 4px;
}

.dash-menu-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--dash-text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dash-menu-link i {
    width: 20px;
    margin-right: 12px;
    font-size: 18px;
    color: var(--dash-text-muted);
    transition: all 0.2s ease;
}

.dash-menu-link:hover {
    background: var(--dash-primary-soft);
    color: var(--dash-primary);
}

.dash-menu-link:hover i {
    color: var(--dash-primary);
    transform: translateX(3px);
}

/* Active State */
.dash-menu-item.active .dash-menu-link {
    background: var(--dash-primary);
    color: #ffffff;
}

.dash-menu-item.active .dash-menu-link i {
    color: #ffffff;
}

/* Footer / Logout */
.dash-sidebar-footer {
    padding: 15px;
    border-top: 1px solid var(--dash-border);
    display: flex;
    justify-content: center;
}

.btn-logout {
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-logout:hover {
    background: #fef2f2;
}


/* --- Dashboard Modern Styles --- */
.dash-glass-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.dash-section-title {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dash-section-title:after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.form-label-modern {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.modern-textarea {
    min-height: 120px;
    border-radius: 20px !important;
    padding: 20px !important;
}

.btn-update {
    background: var(--primary);
    color: #fff !important;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 18px;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 35px rgba(243, 110, 30, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-update:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(243, 110, 30, 0.3);
}

.img-preview-wrap {
    width: 100%;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.img-preview-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

