body {
    position: relative;
    overflow-x: hidden;
}

/* Talent Search Styles */
.talent-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.talent-info {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
}

.talent-overview,
.talent-skills,
.talent-qualifications {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #4b5563;
}

.talent-overview {
    max-height: 3.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.talent-skills,
.talent-qualifications {
    max-height: 2.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    border-color: #d1d5db;
}

.card-title {
    color: #1f2937;
    font-weight: 600;
}

.btn-outline-primary {
    border-color: #3b82f6;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-1px);
}

/* More visible moving particles animation */

.search-icon {
    color: #6b7280;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.search-container:focus-within .search-icon {
    color: #ff6b9d;
    transform: scale(1.1) rotate(5deg);
}

.form-control {
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 400;
    background: transparent;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    box-shadow: none;
    z-index: 2;
    position: relative;
}

    .form-control::placeholder {
        color: #9ca3af;
        font-weight: 300;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        box-shadow: none;
        border: none;
    }

        .form-control:focus::placeholder {
            color: #d1d5db;
            transform: translateX(5px);
        }

.btn-search {
    background: linear-gradient(135deg, #ff6b9d, #ff8cc8);
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    padding: 16px 32px;
}

    .btn-search::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    .btn-search:hover::before {
        left: 100%;
    }

    .btn-search:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 157, 0.6);
        background: linear-gradient(135deg, #ff5a8a, #ff7bb8);
    }

    .btn-search:active {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    }

.suggestions {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.suggestions-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: inline-block;
    margin: 0.25rem;
    padding: 0.5rem 1rem;
}

    .tag:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        color: white;
        text-decoration: none;
    }

@@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bootstrap responsive adjustments */
@@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .search-container {
        padding: 6px;
    }

    .form-control {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    .btn-search {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
}
/* Dashboard Body */
.dashboard-body {
    background: #27276c; /* Deep dark purple matching the image */
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Header */
.dashboard-header {
    background: white; /* White background for header */
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img1 {
    height: 40px;
    width: auto;
    margin-right: 8px;
}

.logo-img2 {
    width: 182px !important;
    margin: 0px;
}

.nav-link {
    color: #333 !important; /* Dark gray/black for navigation links */
    font-weight: 500;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #e91e63 !important; /* Pink on hover */
    }

.job-posting-btn {
    background-color: #27276c; /* Dark blue background */
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    margin: 0 1rem;
}

    .job-posting-btn:hover {
        background-color: #1565c0; /* Darker blue on hover */
        color: white;
    }

.notification-icon {
    position: relative;
    margin: 0 1rem;
    color: #333; /* Black icon */
    font-size: 1.2rem;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e91e63; /* Pink badge */
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-vr {
    background-color: #e91e63; /* Pink background */
    border: none;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-left: 1rem;
    padding: 8px 10px;
}

    .btn-vr:hover {
        background-color: #c2185b; /* Darker pink on hover */
        color: white;
    }

/* Main Content */
.dashboard-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
}

.search-container {
    /* text-align: center; */
    width: 100%;
    max-width: 800px;
}

.search-content {
    background: transparent; /* Remove glass effect to match image */
    border-radius: 20px;
    padding: 3rem 0rem;
}

.search-title {
    color: white; /* White text for "Search For" */
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.talent-text {
    color: #e91e63; /* Pink color for "Talent" */
}

.search-form-container {
    display: flex;
    justify-content: center;
    /* margin: 40px auto; */
    width: 100%;
}

.search-form {
    width: 100%;
    max-width: 900px; /* bar ki max width */
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    color: #333;
    outline: none; /* remove blue outline */
}

    .search-input:focus {
        outline: none;
    }

    .search-input::placeholder {
        color: #999; /* Light gray placeholder text */
    }

.btn-search {
    background-color: #e91e63; /* Pink background */
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .btn-search:hover {
        background-color: #c2185b; /* Darker pink on hover */
    }

/* Responsive Design */
@@media (max-width: 768px) {
    .search-title {
        font-size: 2.5rem;
    }

    .search-input-group {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 600px; /* optional */
        margin: auto;
    }

    .search-input {
        border-radius: 15px 15px 0 0;
        margin-bottom: 5px;
    }

    .btn-search {
        border-radius: 0 0 15px 15px;
    }

    .nav-link {
        margin: 0 0.5rem;
    }

    .job-posting-btn {
        margin: 0 0.5rem;
    }
}

/* User Info Debug */
.user-info-debug {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    z-index: 1000;
}

.dashboard-body {
    background: #fff !important;
}

.add-h {
    height: 141px;
}

.talent-blue-header {
    background: #27276c;
    width: 100%;
    border-radius: 0px 0px 30px 0px;
    animation: smoothLoad 0.85s;
}

.white-container {
    background-color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 65px;
}

.btn2 {
    background: #27276c;
}

.bton {
    border-radius: 9px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    text-transform: uppercase;
    padding: 9px;
    border: none;
}

.l-36-n {
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 38px;
    text-transform: capitalize;
}

/*.boxSpace {
    padding: 204px 0px 50px 0px;
}*/
.prof-container {
    padding: 23px 0px 0px 0px;
}
.job-card {
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #efefef;
}

    .job-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.card-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
    background: #fff;
    border-radius: 50px !important;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.company-name {
    color: #27276c;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.status-badge {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.bookmark-btn {
    background: #27276c;
    border: 1px solid #e9ecef;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    .bookmark-btn:hover {
        background: red;
        color: white;
        border-color: red;
    }

    .bookmark-btn.active {
        background: #ffc107;
        color: white;
        border-color: #ffc107;
    }

.applicants-section {
    border-top: 1px solid #e9ecef;
}

.applicant-count {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e91e63;
}

.divider-line {
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border: none;
    margin: 0;
}

@@media (max-width: 576px) {
    .job-card {
        margin: 1rem;
    }

    .job-title {
        font-size: 1.3rem;
    }
}


.l-24 {
    font-family: system-ui;
    font-style: normal;
    font-size: 3rem;
    font-weight: 200;
    line-height: 27px;
    text-transform: capitalize;
}

/* Pagination Styles */
.pagination-info {
    font-size: 0.9rem;
    color: #6c757d;
}

.page-size-selector {
    display: flex;
    align-items: center;
}

.page-size-selector .form-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

.pagination-lg .page-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    margin: 0 2px;
    border: 1px solid #e9ecef;
    color: #6c757d;
    transition: all 0.3s ease;
}

.pagination-lg .page-link:hover {
    background-color: #27276c;
    border-color: #27276c;
    color: white;
    transform: translateY(-1px);
}

.pagination-lg .page-item.active .page-link {
    background-color: #27276c;
    border-color: #27276c;
    color: white;
    box-shadow: 0 2px 8px rgba(39, 39, 108, 0.3);
}

.pagination-lg .page-item.disabled .page-link {
    color: #adb5bd;
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

.pagination-lg .page-item:first-child .page-link,
.pagination-lg .page-item:last-child .page-link {
    border-radius: 8px;
}

/* Responsive pagination styles */
@media (max-width: 768px) {
    .pagination-info {
        font-size: 0.8rem;
    }

    .page-size-selector {
        flex-direction: column;
        align-items: flex-end;
    }

    .page-size-selector .form-label {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .pagination-lg .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Dropdown menu styles */
.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 160px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    color: #495057;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #212529;
}

.dropdown-item.text-danger:hover {
    background-color: #f8d7da;
    color: #721c24;
}

.dropdown-divider {
    margin: 0.25rem 0;
    border-color: #e9ecef;
}

/* Modal styles for applicants */
.applicant-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.applicant-card:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.applicant-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.applicant-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.applicant-status {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.status-applied {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status-reviewed {
    background-color: #d4edda;
    color: #155724;
}

.status-shortlisted {
    background-color: #fff3cd;
    color: #856404;
}

.status-rejected {
    background-color: #f8d7da;
    color: #721c24;
}

/* Talent details modal styles */
.talent-detail-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.talent-detail-section h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.talent-detail-item {
    margin-bottom: 0.75rem;
}

.talent-detail-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.25rem;
}

.talent-detail-value {
    color: #6c757d;
}

.talent-skill-tag {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.25rem 0.25rem 0.25rem 0;
    display: inline-block;
}

.talent-experience-item {
    background: #f8f9fa;
    border-left: 4px solid #ff6b9d;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0 8px 8px 0;
}

.talent-experience-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.talent-experience-company {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.talent-experience-duration {
    color: #adb5bd;
    font-size: 0.8rem;
}

/* Applicant Tabs Styles */
.applicant-tabs {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.tab-buttons {
    display: flex;
    gap: 0;
}

.tab-button {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-bottom: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #6c757d;
    border-radius: 8px 8px 0 0;
    margin-right: 0.25rem;
}

.tab-button:hover {
    background: #e9ecef;
    color: #495057;
}

.tab-button.active {
    background: #495057;
    color: white;
    border-color: #495057;
    z-index: 1;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: white;
}

.tab-badge {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
}

.tab-content {
    background: white;
    border-radius: 0 8px 8px 8px;
    min-height: 200px;
}

.tab-panel {
    display: none;
    padding: 1.5rem;
}

.tab-panel.active {
    display: block;
}

.tab-panel.empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: #6c757d;
}

.tab-panel.empty h5 {
    color: #495057;
    margin-bottom: 0.5rem;
}

.tab-panel.empty p {
    margin-bottom: 0;
}

/* Application Status Update Styles */
#applicationStatusSection {
    border-radius: 8px;
    overflow: hidden;
}

#applicationStatusSection .card-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #dee2e6;
}

#currentStatusBadge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

#statusUpdateDropdown {
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#statusUpdateDropdown:focus {
    border-color: #495057;
    box-shadow: 0 0 0 0.2rem rgba(73, 80, 87, 0.25);
}

#updateStatusBtn {
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#updateStatusBtn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

#updateStatusBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Status Badge Colors */
.bg-secondary { background-color: #6c757d !important; }
.bg-info { background-color: #17a2b8 !important; }
.bg-primary { background-color: #007bff !important; }
.bg-warning { background-color: #ffc107 !important; color: #212529 !important; }
.bg-success { background-color: #28a745 !important; }
.bg-danger { background-color: #dc3545 !important; }
.bg-dark { background-color: #343a40 !important; }

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}
