h1 {
    text-align: center;
    background-color: #d3d1d1;

}
.job-table tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.job-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.job-table tbody tr:hover {
    background-color: #d1e7ff;
    transition: background-color 0.3s ease;
}


/* Sidebar Styling */
#sidebar {
    width: 190px;
    height: 80%;
    position: static;
    left: 0;
    top: 0;
    background: #ffffff; /* Light gray like FreeJobAlert */
    border-right: 1px solid #ffffff;
    padding: 5px;
    overflow-y: auto;
    font-size: medium;
}

/* Sidebar Placeholder */
#sidebar-placeholder {
    background: #007bff; /* Sidebar background color */
    color: rgb(6, 6, 6);
    padding: 1px;
    border-radius: 5px;
}

/* Main Content */
#content {
    margin-left: 100px; /* Adjusted for sidebar width */
    padding: 5px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}




/* Filters Section */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    background: #e9ecef;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.filters label {
    font-weight: bold;
    margin-right: 5px;
}

.filters input,
.filters select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Buttons */
button {
    background-color: #007bff; /* Primary color */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

/* Job Table Styling */
.job-table {
    border-collapse: collapse;
    margin-top: 20px;
    background: white;  
    width: 100%; /* Full width for the table */
}

.job-table th,
.job-table td {
    border: 1px solid #353434;
    padding: 10px; /* Increased padding for better spacing */
    text-align: left;
}

.job-table th {
    background-color: #007bff; /* Primary color */
    color: white;
}

/* Responsive Design - Mobile View */
@media (max-width: 992px) {
    #sidebar {
        position: relative;
        left: -250px; /* Hidden by default */
        transition: left 0.3s;
    }

    #sidebar.show {
        left: 0; /* Show sidebar */
    }

    #content {
        margin-left: 0; /* No left margin */
    }

    .sidebar-toggle-btn {
        display: block; /* Show toggle button in mobile */
        position: relative;
        top: 10px;
        left: 10px;
        background: #007bff; /* Primary color */
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        z-index: 1000;
    }
}

/* Responsive Job Display */
@media (max-width: 768px) {
    .job-table {
        display: block; /* Ensure table is visible on mobile */
        overflow-x: auto;
    }

    .job-container {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .job-box {
        flex: 1 1 calc(100% - 10px);
        background: white;
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
    }

    .job-box h2 {
        font-size: 18px;
        color: #007bff; /* Primary color */
        margin-bottom: 10px;
        border-bottom: 2px solid #007bff; /* Underline */
        padding-bottom: 5px;
        text-align: center;
    }

    .job-box p {
        margin: 5px 0;
        font-size: 14px;
    }

    .job-box .job-detail {
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 14px;
    }

    .job-box .last-date {
        color: red; /* Highlight last date */
        font-weight: bold;
    }

    .job-box a {
        color: blue;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        margin-top: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .job-box {
        flex: 1 1 100%; /* Full width on small screens */
    }
}

















/* new animatic css */





/* Filters Section */
#filters {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    animation: scaleUp 0.5s ease-out;
}

@keyframes scaleUp {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#filters .filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

#filters div {
    flex: 1;
    min-width: 200px;
}

#filters label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

#filters input, #filters select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#filters input:focus, #filters select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.2);
    outline: none;
}

/* Buttons */
button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#apply-filters {
    background-color: #3498db;
    color: white;
}

#apply-filters:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

#clear-filters {
    background-color: #e74c3c;
    color: white;
}

#clear-filters:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

#downloadBtn {
    background-color: #2ecc71;
    color: white;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

#downloadBtn:hover {
    background-color: #27ae60;
    animation: none;
    transform: translateY(-2px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}


/* Sidebar Animation */
#sidebar-placeholder, #right-sidebar-placeholder {
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Loading Animation (for dynamic content) */
@keyframes shimmer {
    0% { background-position: -468px 0 }
    100% { background-position: 468px 0 }
}

.loading-shimmer {
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 104px;
    height: 20px;
    margin-bottom: 10px;
    border-radius: 4px;
}

/* Toggle Sidebar Animation */
#sidebar {
    transition: transform 0.3s ease-in-out;
}

#sidebar.show {
    transform: translateX(0);
}


















/* Sidebar Wrapper Styles */
.sidebar-wrapper {
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Sidebar Toggle Button - Mobile */
.sidebar-toggle {
    display: none; /* Hidden by default */
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

.sidebar-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* Sidebar Main Styles */
.sidebar {
    width: 190px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 5px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
    max-height: 100vh;
    overflow-y: auto;
}

/* Social Share Buttons */
.social-share-buttons {
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    animation: fadeIn 0.5s ease-out;
}

.social-share-buttons p {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.social-share-buttons a {
    display: inline-block;
    margin-right: 4px;
    transition: all 0.3s ease;
    transform: scale(1);
}

.social-share-buttons a:hover {
    transform: scale(1.1) translateY(-3px);
    opacity: 0.9;
}

.social-share-buttons img {
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-share-buttons img:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Blog Links Section */
.sidebar h3 {
    color: #007bff;
    font-size: 1.2rem;
    margin: 15px 0 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #007bff;
    animation: slideInLeft 0.5s ease-out;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin-bottom: 8px;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

/* Stagger animations for list items */
.sidebar ul li:nth-child(1) { animation-delay: 0.1s; }
.sidebar ul li:nth-child(2) { animation-delay: 0.2s; }
.sidebar ul li:nth-child(3) { animation-delay: 0.3s; }
.sidebar ul li:nth-child(4) { animation-delay: 0.4s; }
.sidebar ul li:nth-child(5) { animation-delay: 0.5s; }
.sidebar ul li:nth-child(6) { animation-delay: 0.6s; }
.sidebar ul li:nth-child(7) { animation-delay: 0.7s; }

.sidebar ul li a {
    display: block;
    padding: 8px 10px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: rgba(0, 123, 255, 0.05);
}

.sidebar ul li a:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
    transform: translateX(5px);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

/* Right Sidebar Placeholder */
#right-sidebar-placeholder {
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
    animation: fadeInRight 0.6s ease-out;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .sidebar-toggle {
        display: block;
        animation: none; /* Disable pulse on mobile */
    }
    
    .sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        height: 100vh;
        z-index: 1001;
        width: 220px;
        padding-top: 60px;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        transform: none;
        max-height: none;
    }
    
    .sidebar.show {
        left: 0;
        animation: slideInLeftMobile 0.3s ease-out;
    }
    
    @keyframes slideInLeftMobile {
        from { left: -250px; }
        to { left: 0; }
    }
    
    /* Overlay when sidebar is open */
    .sidebar-wrapper::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .sidebar-wrapper.sidebar-open::after {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Custom Scrollbar for Sidebar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}
















/* ===== BASE ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes jiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

@keyframes colorPulse {
    0%, 100% { background-color: #007bff; }
    50% { background-color: #00a8ff; }
}

@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(0,123,255,0); }
    50% { box-shadow: 0 0 15px rgba(0,123,255,0.7); }
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ===== SIDEBAR WRAPPER ===== */
.sidebar-wrapper {
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* ===== TOGGLE BUTTON ===== */
.sidebar-toggle {
    position: relative;
    overflow: hidden;
    animation: 
        colorPulse 4s infinite,
        float 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sidebar-toggle:hover {
    animation: 
        jiggle 0.4s ease,
        colorPulse 4s infinite,
        float 3s ease-in-out infinite;
}

.sidebar-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

.sidebar-toggle:active::after {
    animation: ripple 0.6s linear;
}

/* ===== SIDEBAR MAIN ===== */
.sidebar {
    transform-origin: left center;
    animation: 
        sidebarEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
        borderGlow 3s infinite 1s;
}

@keyframes sidebarEntrance {
    0% { 
        opacity: 0;
        transform: rotateY(90deg) translateX(-50px);
    }
    100% { 
        opacity: 1;
        transform: rotateY(0) translateX(0);
    }
}

/* ===== SOCIAL ICONS ===== */
.social-share-buttons a {
    position: relative;
    transition: all 0.3s ease;
}

.social-share-buttons a::before {
    content: attr(aria-label);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #333;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-share-buttons a:hover {
    animation: float 1.5s ease-in-out infinite;
}

.social-share-buttons a:hover::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    bottom: -35px;
}

/* ===== BLOG LINKS ===== */
.sidebar ul li {
    position: relative;
    overflow: hidden;
}

.sidebar ul li::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00a8ff);
    transition: width 0.4s ease;
}

.sidebar ul li:hover::before {
    width: 100%;
}

.sidebar ul li a {
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sidebar ul li:hover a {
    transform: translateX(10px);
    color: #007bff !important;
}

/* ===== MOBILE ANIMATIONS ===== */
@media (max-width: 767px) {
    .sidebar {
        animation: 
            mobileSidebarEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
            borderGlow 3s infinite 1s;
    }
    
    @keyframes mobileSidebarEntrance {
        0% { 
            opacity: 0;
            transform: translateX(-100%) rotateY(90deg);
        }
        100% { 
            opacity: 1;
            transform: translateX(0) rotateY(0);
        }
    }
    
    .sidebar-wrapper::after {
        animation: fadeInOverlay 0.3s ease-out forwards;
    }
    
    @keyframes fadeInOverlay {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

/* ===== SCROLL EFFECTS ===== */
.sidebar {
    scroll-behavior: smooth;
}

.sidebar::-webkit-scrollbar-thumb {
    animation: colorPulse 4s infinite;
}

/* ===== HOVER EFFECTS ===== */
.sidebar h3 {
    position: relative;
    display: inline-block;
}

.sidebar h3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #007bff, #00a8ff);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.sidebar h3:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== SPECIAL EFFECTS ===== */
.sidebar:hover {
    animation: borderGlow 3s infinite;
}

/* ===== RIGHT SIDEBAR ===== */
#right-sidebar-placeholder {
    animation: 
        fadeInRight 0.8s ease-out,
        subtleFloat 4s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ===== ANIMATION DELAYS ===== */
.social-share-buttons a:nth-child(1) { transition-delay: 0.1s; }
.social-share-buttons a:nth-child(2) { transition-delay: 0.2s; }
.social-share-buttons a:nth-child(3) { transition-delay: 0.3s; }
.social-share-buttons a:nth-child(4) { transition-delay: 0.4s; }

.sidebar ul li:nth-child(1) { transition-delay: 0.1s; }
.sidebar ul li:nth-child(2) { transition-delay: 0.2s; }
.sidebar ul li:nth-child(3) { transition-delay: 0.3s; }
.sidebar ul li:nth-child(4) { transition-delay: 0.4s; }
.sidebar ul li:nth-child(5) { transition-delay: 0.5s; }
.sidebar ul li:nth-child(6) { transition-delay: 0.6s; }
.sidebar ul li:nth-child(7) { transition-delay: 0.7s; }
















/* ===== FREJOBLINK OFFICIAL STYLES ===== */
body {
    font-family: 'Noto Sans', 'Arial', sans-serif;
    background-color: #f8faff;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  
  /* DYNAMIC BACKGROUND WITH TIRANGA COLORS */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
      /* Saffron Layer */
      linear-gradient(160deg, rgba(255, 153, 51, 0.266) 0%, transparent 40%),
      /* White Layer */
      linear-gradient(rgba(255, 255, 255, 0.9) 0%, transparent 100%),
      /* Green Layer */
      linear-gradient(20deg, rgba(19, 136, 8, 0.219) 0%, transparent 40%),
      /* Ashoka Blue Accent */
      radial-gradient(circle at 80% 20%, rgba(0, 88, 183, 0.242) 0%, transparent 30%);
    z-index: -1;
    animation: patrioticMove 20s linear infinite alternate;
  }
  
  @keyframes patrioticMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
  }
  
  /* ===== HEADER WITH LOGO ===== */
  .header {
    background: linear-gradient(90deg, #0057b7, #003d82);
    padding: 12px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 100;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }
  
  .logo-text {
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
  }
  
  /* ===== JOB LISTINGS ===== */
  .job-card {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 87, 183, 0.12);
    border-left: 6px solid #0057b7;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  /* TIRANGA TOP BORDER */
  .job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
      #FF9933 0%, #FF9933 33%, 
      #ffffff 33%, #ffffff 66%, 
      #138808 66%, #138808 100%
    );
  }
  
  .job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 87, 183, 0.2);
  }
  
  /* ===== URGENT JOB STYLES ===== */
  .urgent-job {
    border: 2px solid #d40000;
    animation: urgentPulse 1.5s infinite;
  }
  
  @keyframes urgentPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 0, 0, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(212, 0, 0, 0); }
  }
  
  .urgent-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d40000, #FF9933);
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  /* ===== OFFICIAL BADGE ===== */
  .govt-badge {
    background: linear-gradient(135deg, #0057b7, #003d82);
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  
  /* ===== MAIN CONTENT AREA ===== */
  .main-content {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 87, 183, 0.1);
    padding: 25px;
    margin: 20px auto;
    max-width: 1200px;
  }
  
  /* ===== RESPONSIVE ADJUSTMENTS ===== */
  @media (max-width: 768px) {
    .logo-img {
      height: 40px;
    }
    
    .logo-text {
      font-size: 18px;
    }
    
    .job-card {
      border-left-width: 4px;
    }
    
    .urgent-tag {
      font-size: 12px;
      padding: 3px 10px;
    }
  }