:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --accent: #0EA5E9;
    --success: #10B981;
    --danger: #EF4444;
    --bg-light: #F0F9FF;
    --white: #FFFFFF;
    --text: #1E293B;
    --text-light: #64748B;
    --border: #E2E8F0;
    --shadow: rgba(37, 99, 235, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg-light);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background: var(--white);
    padding: 1.25rem 0;
    box-shadow: 0 1px 3px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    padding: 3rem 0 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Ad Placements */
.ad-banner {
    background: var(--white);
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin: 2rem auto;
    text-align: center;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

.ad-sidebar {
    background: var(--white);
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 1rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.875rem;
    position: sticky;
    top: 100px;
}

/* Search Section */
.search-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px var(--shadow);
    margin-bottom: 3rem;
}

.search-bar {
    display: grid;
    grid-template-columns: 2fr 1.5fr auto;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-input, .search-select {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input:focus, .search-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-btn, .btn-primary {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.search-btn:hover, .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s;
    font-weight: 500;
    text-decoration: none;
    color: var(--text);
}

.filter-chip:hover, .filter-chip.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-bottom: 3rem;
}

.jobs-container {
    display: grid;
    gap: 1.5rem;
}

/* Job Cards */
.job-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.job-card:hover {
    box-shadow: 0 8px 24px var(--shadow);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.job-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.job-info {
    flex: 1;
    margin-left: 1rem;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.company-name {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.job-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.35rem 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
}

.salary {
    font-weight: 600;
    color: var(--success);
    font-size: 1.125rem;
}

.urgent-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.apply-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    margin-top: 1rem;
}

.apply-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Application Form */
.application-container {
    max-width: 800px;
    margin: 2rem auto;
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px var(--shadow);
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    z-index: 0;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 1;
    position: relative;
    color: var(--text-light);
}

.progress-step.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.progress-step.completed {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary {
    flex: 1;
    padding: 0.875rem;
    background: var(--bg-light);
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-primary {
    flex: 1;
}

/* Success Page */
.success-container {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 6px var(--shadow);
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--success);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.share-section {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.share-link {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.link-display {
    flex: 1;
    padding: 0.75rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: var(--primary-dark);
}

/* Job Details Page */
.job-details {
    max-width: 900px;
    margin: 2rem auto;
}

.job-detail-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px var(--shadow);
    margin-bottom: 2rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Admin Styles */
.admin-header {
    background: var(--primary);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.admin-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.admin-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-success {
    padding: 0.875rem 1.5rem;
    background: var(--success);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-success:hover {
    background: #059669;
}

.btn-danger {
    padding: 0.5rem 1rem;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.btn-danger:hover {
    background: #DC2626;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px var(--shadow);
}

.stat-card h3 {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-card .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.job-list {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px var(--shadow);
}

.job-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-item:last-child {
    border-bottom: none;
}

.job-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.job-item-meta {
    font-size: 0.875rem;
    color: var(--text-light);
}

.job-item-actions {
    display: flex;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .ad-sidebar {
        display: none;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    header {
        padding: 0.875rem 0;
    }

    nav {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .logo {
        font-size: 1.35rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .nav-links {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        padding: 1.5rem 0 1.25rem;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-bottom: 0.5rem;
        padding: 0 0.5rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        color: var(--text-light);
        padding: 0 1rem;
    }

    .stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem;
        background: var(--white);
        border-radius: 12px;
        margin: 0 0.5rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .stat-item {
        min-width: 70px;
        text-align: center;
    }

    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 0.15rem;
    }

    .stat-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    /* Search Mobile */
    .search-section {
        padding: 1rem;
        margin: 1rem 0 1.25rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .search-bar {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-bottom: 0.875rem;
    }

    .search-input, .search-select {
        padding: 0.8rem 1rem;
        font-size: 16px;
        border-radius: 8px;
        border-width: 1.5px;
    }

    .search-btn {
        padding: 0.8rem 1.25rem;
        width: 100%;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .filters {
        gap: 0.4rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .filter-chip {
        padding: 0.4rem 0.85rem;
        font-size: 0.75rem;
        border-radius: 16px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Job Cards Mobile */
    .main-content {
        margin-bottom: 1.5rem;
    }

    .jobs-container {
        gap: 0.75rem;
    }

    .job-card {
        padding: 1rem 1rem 1.1rem;
        border-radius: 10px;
        margin: 0;
        border-width: 1px;
    }

    .job-card:hover {
        transform: none;
    }

    .job-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .job-logo {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .job-info {
        margin-left: 0;
        width: 100%;
        min-width: 0;
    }

    .job-title {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.2rem;
        line-height: 1.3;
        padding-right: 0;
    }

    .company-name {
        font-size: 0.82rem;
        margin-bottom: 0.35rem;
    }

    .job-meta {
        gap: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .meta-item {
        font-size: 0.75rem;
    }

    .job-tags {
        gap: 0.35rem;
        margin-bottom: 0.6rem;
    }

    .tag {
        padding: 0.2rem 0.5rem;
        font-size: 0.68rem;
        border-radius: 4px;
    }

    .job-card > p {
        font-size: 0.82rem !important;
        line-height: 1.45;
        margin-bottom: 0.6rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .salary {
        font-size: 0.95rem;
        font-weight: 700;
    }

    .urgent-badge {
        top: 0.6rem;
        right: 0.6rem;
        padding: 0.15rem 0.45rem;
        font-size: 0.6rem;
        border-radius: 10px;
    }

    /* Job Details Mobile */
    .job-details {
        margin: 0.75rem auto;
        padding: 0 0.25rem;
    }

    .job-detail-card {
        padding: 1.25rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .job-detail-card .job-header {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 1.25rem !important;
    }

    .job-detail-card .job-logo {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.25rem !important;
        border-radius: 10px;
    }

    .job-detail-card .job-info {
        margin-left: 0.875rem !important;
    }

    .job-detail-card .job-title {
        font-size: 1.15rem !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.3;
    }

    .job-detail-card .company-name {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }

    .job-detail-card .job-meta {
        flex-direction: column;
        gap: 0.2rem;
        font-size: 0.8rem !important;
    }

    .job-detail-card .job-tags {
        margin-bottom: 1.25rem !important;
    }

    .job-detail-card h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0.6rem !important;
    }

    .job-detail-card p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    .requirements-list {
        margin-bottom: 1.5rem;
    }

    .requirements-list li {
        padding: 0.55rem 0;
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .requirements-list li::before {
        font-size: 1rem;
    }

    .job-detail-card .btn-primary {
        padding: 1rem !important;
        font-size: 1rem !important;
        border-radius: 10px;
    }

    /* Application Form Mobile */
    .application-container {
        margin: 0.75rem auto;
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }

    .progress-bar {
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }

    .progress-step {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        border-width: 2px;
    }

    .progress-bar::before {
        top: 15px;
        height: 2px;
    }

    .step-title {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }

    .step-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .form-group {
        margin-bottom: 1.1rem;
    }

    .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .form-input, .form-select, .form-textarea {
        padding: 0.75rem 0.875rem;
        font-size: 16px;
        border-radius: 8px;
        border-width: 1.5px;
    }

    .form-textarea {
        min-height: 100px;
    }

    .checkbox-group {
        gap: 0.6rem;
    }

    .checkbox-input {
        width: 18px;
        height: 18px;
    }

    .form-actions {
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .btn-secondary, .btn-primary {
        padding: 0.875rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    /* Success Page Mobile */
    .success-container {
        margin: 1rem auto;
        padding: 1.75rem 1.25rem;
        border-radius: 12px;
    }

    .success-container h2 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .success-container p {
        font-size: 0.9rem;
    }

    .checkmark {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .share-section {
        padding: 1rem;
        margin: 1.25rem 0;
        border-radius: 10px;
    }

    .share-section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .share-link {
        flex-direction: column;
        gap: 0.5rem;
    }

    .link-display {
        font-size: 0.75rem;
        padding: 0.65rem;
    }

    .copy-btn {
        width: 100%;
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    /* Admin Mobile */
    .admin-header {
        padding: 1.25rem 0;
    }

    .admin-header h1 {
        font-size: 1.35rem;
        margin-bottom: 0.25rem;
    }

    .admin-header p {
        font-size: 0.85rem;
        opacity: 0.9;
    }

    .admin-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .admin-actions button {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .admin-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .stat-card {
        padding: 0.875rem;
        border-radius: 10px;
    }

    .stat-card h3 {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .stat-card .number {
        font-size: 1.35rem;
    }

    .job-list {
        padding: 0.75rem;
        border-radius: 10px;
    }

    .job-list h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border);
    }

    .job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.75rem 0;
    }

    .job-item-info h4 {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }

    .job-item-meta {
        font-size: 0.75rem;
    }

    .job-item-actions {
        width: 100%;
        gap: 0.4rem;
    }

    .job-item-actions button {
        flex: 1;
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    /* Footer Mobile */
    footer {
        padding: 1.25rem 0 !important;
        margin-top: 1.5rem !important;
    }

    footer p {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .job-card {
        padding: 1rem;
    }

    .job-title {
        font-size: 1rem;
    }
}
