.recruitee-jobs-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

.recruitee-jobs-heading {
    text-align: center;
    margin: 40px 0;
    color: #5c4b24;
    font-size: 28px;
    font-weight: bold;
}

.recruitee-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.filter-dropdown select {
    padding: 12px 20px;
    min-width: 200px;
    border: 1px solid #e5e0c5;
    border-radius: 4px;
    background-color: #f9f7e8;
    color: #5c4b24;
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%235c4b24"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.recruitee-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.job-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px; /* Ensure minimum height */
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.job-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.job-title {
    padding: 15px 20px 5px;
    margin: 0;
    color: #5c4b24;
    font-size: 18px;
    font-weight: bold;
}

.job-type, .job-location {
    padding: 5px 20px;
    margin: 0;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.job-icon {
    margin-right: 8px;
    font-size: 16px;
}

.job-button {
    display: block;
    margin: 15px 20px 20px;
    padding: 10px;
    text-align: center;
    background-color: #73603a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Push button to bottom */
}

.job-button:hover {
    background-color: #5c4b24;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .recruitee-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-dropdown select {
        width: 100%;
    }
}