/* assets/css/style.css */
.wrp-application-container {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    max-width: 600px;
    margin: 20px auto;
}

.wrp-form-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5em;
}

.wrp-field-row {
    margin-bottom: 15px;
}

.wrp-field-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.wrp-col {
    flex: 1;
}

.wrp-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9em;
}

.wrp-form input[type="text"],
.wrp-form input[type="email"],
.wrp-form input[type="tel"],
.wrp-form select,
.wrp-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.wrp-submit-btn {
    background-color: #000; /* Changez selon la charte Neubauer */
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    margin-top: 10px;
    transition: background 0.3s;
}

.wrp-submit-btn:hover {
    background-color: #333;
}

.wrp-consent {
    font-size: 0.85em;
    color: #666;
}

.wrp-consent input {
    margin-right: 10px;
}

/* Recherche */
.wrp-search-container {
    background: #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.wrp-search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.wrp-search-inputs {
    display: flex;
    gap: 10px;
    flex: 1;
    flex-wrap: wrap;
}
.wrp-search-inputs input, .wrp-search-inputs select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 150px;
}

/* Grille de résultats */
.wrp-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.wrp-job-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.wrp-job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.wrp-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85em;
    color: #666;
}
.wrp-tag-contrat {
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
}
.wrp-card-title {
    margin: 10px 0 20px 0;
    font-size: 1.2em;
}
.wrp-card-title a {
    text-decoration: none;
    color: #000;
}
.wrp-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.wrp-btn-details {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
}