
body {
    margin: 0;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 10px;
}

select {
    padding: 8px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

#jobList {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 800px;
}

.job-card {
    background: #fff;
    border: 1px solid #ddd;
    border-left: 6px solid green;
    border-radius: 5px;
    margin: 10px 0;
    padding: 20px;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

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

.job-title {
    font-size: 18px;
    font-weight: bold;
    color: green;
    margin-bottom: 5px;
}

.company {
    font-weight: bold;
    margin-bottom: 8px;
}

.description {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.more-details {
    color: blue;
    font-size: 14px;
    text-decoration: underline;
}

a.job-card-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

@media (max-width: 600px) {
    .filters {
        flex-direction: column;
    }

    .job-card {
        padding: 15px;
    }

    .job-title {
        font-size: 16px;
    }
}
