.bamboohr-jobs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bamboohr-job-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.bamboohr-job-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bamboohr-job-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.bamboohr-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.bamboohr-job-location,
.bamboohr-job-department {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.bamboohr-apply-btn {
    background: #007cba;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.bamboohr-apply-btn:hover {
    background: #005a87;
    color: white;
}

.bamboohr-error,
.bamboohr-no-jobs {
    padding: 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
}

.bamboohr-no-jobs {
    background: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

@media (max-width: 768px) {
    .bamboohr-job-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bamboohr-apply-btn {
        align-self: flex-start;
    }
}
