.career-container {
    min-height: 100vh;
    background-color: #0f172a;
    color: #f8fafc;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.career-nav {
    background-color: #020617;
    border-bottom: 1px solid #1e293b;
    padding: 10px 20px;
}
.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}
.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
}
.nav-links a.active {
    color: #fbbf24;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #1e3a8a, #0f172a);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #1e40af;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero-icons {
    font-size: 24px;
    margin-bottom: 10px;
}
.slogan-pill {
    background-color: #d97706;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin: 15px 0;
}

/* Search Box */
.search-box {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.search-box input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
}
.search-box button {
    background-color: #f59e0b;
    color: white;
    border: none;
    padding: 0 24px;
    font-weight: bold;
    cursor: pointer;
}

/* Marquee */
.marquee-bar {
    background-color: #059669;
    color: white;
    padding: 8px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
}

/* Main Layout */
.main-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Sidebar Filter Styles */
.sidebar-filter {
    width: 280px;
    background: white;
    color: #333;
    border-radius: 8px;
    padding: 16px;
    height: fit-content;
    border: 1px solid #e2e8f0;
}
.filter-group {
    margin-bottom: 20px;
}
.filter-group h4 {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #475569;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 8px;
    cursor: pointer;
    color: #4b5563;
}

/* Job Cards Area */
.jobs-area {
    flex: 1;
}
.jobs-header {
    background: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    font-size: 13px;
}
.jobs-header select {
    padding: 6px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
}

/* Job Card Component */
.job-card {
    background: white;
    color: #333;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.job-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.badge-country {
    background: #eff6ff;
    color: #2563eb;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}
.badge-category {
    background: #fffbeb;
    color: #d97706;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}
.salary-text {
    background: #ecfdf5;
    color: #059669;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
}
.job-title {
    font-size: 16px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 4px;
}
.job-location {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}
.job-desc {
    font-size: 12px;
    color: #475569;
    margin-bottom: 12px;
}
.tag-list {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.tag-item {
    background: #f0fdf4;
    color: #15803d;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
}
.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
    font-size: 12px;
    color: #64748b;
}
.details-btn {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
.career-footer {
    background-color: #020617;
    color: #94a3b8;
    padding: 40px 20px 20px;
    border-top: 1px solid #1e293b;
    font-size: 12px;
    margin-top: auto;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}
.footer-grid h5 {
    color: white;
    margin-bottom: 10px;
    font-size: 14px;
}

@media(max-width: 768px) {
    .main-layout { flex-direction: column; }
    .sidebar-filter { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
}