#authentication .nav-link {
    border-radius: 50px;
    transition: 0.3s ease;
    font-weight: 600;
}

#authentication .nav-link.active {
    background-color: #004259;
    color: #ffffff;
}

#authentication .nav-link:not(.active) {
    color: #212529;
}

#authentication .nav-link:not(.active):hover {
    background-color: #f1f1f1;
}

.btn-custom {
    background-color: #004259;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.btn-custom:hover {
    background-color: #003447;
    color: #fff;
}

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
}

.sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 260px;
    background: #004259;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: all 0.25s ease;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1040;
    box-shadow: 2px 0 12px rgba(0,0,0,0.08);
}

.sidebar-account {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}

.account-avatar {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #ccab84;
    color: #004259;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
}

.sidebar-account .dropdown-menu {
    border-radius: 12px;
    min-width: 220px;
}

/* Collapsed sidebar */
.sidebar.collapsed {
    width: 80px;
}

/* Hide text */
.sidebar.collapsed .menu-text {
    opacity: 0;
    visibility: hidden;
    width: 0;
}

/* Center icons */
.sidebar.collapsed .nav-link {
    justify-content: center;
}

.sidebar.collapsed .nav-link i {
    margin-right: 0 !important;
    font-size: 1.25rem;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 4px;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

/* Icons */
.sidebar .nav-link i {
    color: #ccab84;
    transition: color 0.2s ease;
}

/* Hover */
.sidebar .nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    transform: translateX(2px);
}

.sidebar .nav-link:hover i {
    color: #ffffff;
}

/* Active */
.sidebar .nav-link.active {
    background: #ccab84;
    color: #004259;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.sidebar .nav-link.active i {
    color: #004259;
}
.sidebar.collapsed .sidebar-account .menu-text {
    display: none;
}

.sidebar.collapsed .sidebar-account .dropdown-toggle::after {
    display: none;
}

.sidebar.collapsed .sidebar-account {
    display: flex;
    justify-content: center;
}

#toggleSidebar {
    background: rgba(255,255,255,0.08);
    border: none;
    color: #ffffff;
    border-radius: 10px;
    transition: all 0.2s ease;
}

#toggleSidebar:hover {
    background: #ccab84;
    color: #004259;
}

.dashboard-content {
    flex: 1;
    padding: 24px;
    transition: all 0.25s ease;
    overflow-x: hidden;
    background: #f8f9fa;
    min-height: 100vh;
}

.mobile-topbar {
    margin-bottom: 1rem;
}

.mobile-topbar .btn {
    background: #004259;
    border: none;
    color: #ffffff;
    border-radius: 10px;
}

.mobile-topbar .btn:hover {
    background: #ccab84;
    color: #004259;
}


@media (max-width: 768px) {

    .sidebar {
        position: fixed;
        top: 0;
        left: -260px;
        height: 100%;
        box-shadow: 0 0 30px rgba(0,0,0,0.20);
    }

    .sidebar.show {
        left: 0;
    }

    .dashboard-content {
        width: 100%;
        padding: 16px;
    }
}

.custom-card {
    background: #ffffff;
    border: 1px solid rgba(0, 66, 89, 0.12);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.custom-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.custom-card-title {
    color: #004259;
    font-weight: 600;
    margin-bottom: 10px;
}

.custom-card-text {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.service-box {
    background: #ffffff;
    border: 1px solid rgba(0, 66, 89, 0.12);
    border-radius: 14px;
    padding: 18px;
    height: 100%;
    transition: all 0.2s ease;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #ccab84;
}

.service-icon {
    font-size: 28px;
    color: #004259;
    margin-bottom: 10px;
}

.service-name {
    font-weight: 600;
    color: #004259;
    margin-bottom: 6px;
}

.service-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.service-tile {
    display: block;
}

.stepper {
    gap: 10px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e9ecef;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 6px;
    transition: 0.2s;
}

.step-circle.active {
    background: #004259;
    color: white;
}

.step-circle.done {
    background: #ccab84;
    color: white;
}

.step-label {
    font-size: 12px;
    color: #555;
}

.consultant-card {
    background: #ffffff;
    border: 1px solid rgba(204, 171, 132, 0.25);
    border-left: 4px solid #ccab84;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    max-width: 420px;
    transition: all 0.25s ease;
}

.consultant-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.consultant-image-wrapper {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.consultant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid #ccab84;
}

.consultant-name {
    color: #004259;
    font-weight: 700;
}

.consultant-meta {
    color: #5f6b73;
    font-size: 0.95rem;
}

.consultant-meta i {
    color: #ccab84;
}

.summary-section {
    padding: 22px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 66, 89, 0.08);
}

.section-title {
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #004259;
    font-weight: 600;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 12px;
    color: #6c757d;
}

.detail-value {
    font-size: 13.5px;
    font-weight: 500;
    color: #212529;
    text-align: right;
    max-width: 60%;
}
/*
#users-datatable {
    border-collapse: separate;
    border-spacing: 0 8px;
}

#users-datatable tbody tr {
    background: #fff;
    transition: 0.2s ease;
}

#users-datatable tbody tr:hover {
    background: rgba(0, 66, 89, 0.03);
}

#users-datatable td,
#users-datatable th {
    vertical-align: middle;
} */