


#choose1 {
    background-image: url("~/assets/img/choose1.jpg") !important;
}
.d-flex {
    display: flex;
    gap: 10px; /* Adds space between buttons */
    flex-wrap: wrap; /* Ensures responsiveness */
}

@media (max-width: 576px) {
    .d-flex {
        flex-direction: column; /* Stacks buttons vertically on small screens */
        gap: 5px;
    }
}

/* ============================================
   Global Utility Styles
   ============================================ */

/* Hide the ::after pseudo-element that's causing the red mark */
.dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

/* Hide the red chevron icons on mobile (keep dropdowns functional) */
@media (max-width: 768px) {
    .main-menu__list .dropdown .fa-chevron-down,
    .main-menu__list .dropdown i {
        display: none !important;
    }
}

/* ============================================
   Dashboard Header Styles (Shared)
   ============================================ */

.dashboard-header,
.admin-dashboard-header {
    background: linear-gradient(135deg, #0d6efd 0%, #003b4f 100%);
    position: relative;
    padding: 3rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dashboard-header__bg,
.admin-dashboard-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.dashboard-header__inner,
.admin-dashboard-header__inner {
    position: relative;
    z-index: 2;
}

.dashboard-welcome-title,
.admin-dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.dashboard-welcome-subtitle,
.admin-dashboard-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.dashboard-content,
.admin-dashboard-content {
    background: #f8f9fa;
    min-height: 60vh;
    padding: 0 1rem 2rem;
}

/* ============================================
   Card Styles (Shared)
   ============================================ */

.admin-content-card,
.personal-info-card,
.cv-display-card,
.cv-upload-card,
.training-courses-card,
.saved-jobs-card,
.applications-card,
.change-password-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.card-header-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #003b4f;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.card-body-section {
    padding: 2rem;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 1200px) {
    .dashboard-welcome-title,
    .admin-dashboard-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .dashboard-header,
    .admin-dashboard-header {
        padding: 2rem 0;
    }

    .dashboard-welcome-title,
    .admin-dashboard-title {
        font-size: 1.75rem;
    }

    .dashboard-welcome-subtitle,
    .admin-dashboard-subtitle {
        font-size: 1rem;
    }

    .card-body-section {
        padding: 1.5rem;
    }

    .card-header-section {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .dashboard-welcome-title,
    .admin-dashboard-title {
        font-size: 1.5rem;
    }

    .card-body-section {
        padding: 1.25rem;
    }
}

