body {
    font-family: Arial, sans-serif;
    background: #f6f8fa;
    visibility: hidden;
}

h1 {
    text-align: center;
    color: #333;
}

.job-list {
    max-width: 800px;
    margin: auto;
}

.job-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.job-card:hover {
    transform: scale(1.01);
}

.job-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.job-meta {
    font-size: 0.9rem;
    color: #555;
}

.empty-message {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #777;
}