/**
 * Public-facing styles for Sleeve KE plugin.
 *
 * @package    Sleeve_KE
 * @subpackage Sleeve_KE/assets/css
 */

.sleeve-ke-job-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.sleeve-ke-job-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.sleeve-ke-job-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.sleeve-ke-job-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #333;
}

.sleeve-ke-job-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.sleeve-ke-job-description {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.sleeve-ke-job-apply-btn {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.sleeve-ke-job-apply-btn:hover {
    background: #005177;
    color: #fff;
}

.sleeve-ke-form-wrapper {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.sleeve-ke-form-field {
    margin-bottom: 20px;
}

.sleeve-ke-form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.sleeve-ke-form-field input[type="text"],
.sleeve-ke-form-field input[type="email"],
.sleeve-ke-form-field textarea,
.sleeve-ke-form-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.sleeve-ke-form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.sleeve-ke-submit-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.sleeve-ke-submit-btn:hover {
    background: #005177;
}
