/* Styles pour l'affichage frontend (shortcode) du plugin Gestion Inscrits Concours */
.eur-inscrits-container {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.eur-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}
.eur-search-form {
    display: flex;
    gap: 8px;
    align-items: center;
}
.eur-search-form input[type="text"] {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 200px;
}
.eur-btn {
    padding: 6px 12px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.eur-btn:hover {
    background: #005a87;
    color: white;
}
.eur-btn-clear {
    background: #666;
}
.eur-btn-clear:hover {
    background: #444;
}
.eur-btn-export {
    background: #32a132;
}
.eur-btn-export:hover {
    background: #258025;
}
.eur-results-info {
    margin: 10px 0;
    color: #555;
    font-size: 0.95em;
}
.eur-table-wrapper {
    overflow-x: auto;
}
.eur-inscrits-table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.eur-inscrits-table th,
.eur-inscrits-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
    vertical-align: top;
    font-size: 12px;
}
.eur-inscrits-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}
.eur-inscrits-table th a {
    text-decoration: none;
    color: #0073aa;
}
.eur-inscrits-table th a:hover {
    text-decoration: underline;
}
.eur-no-results {
    text-align: center;
    color: #888;
    font-style: italic;
}
.eur-pagination {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}
.eur-page-link {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 4px;
    background: #f0f0f0;
    color: #0073aa;
    text-decoration: none;
    border-radius: 4px;
}
.eur-page-link:hover {
    background: #e0e0e0;
}
.eur-error {
    color: #b30000;
    padding: 10px;
    background: #ffeaea;
    border-left: 4px solid #b30000;
}
.eur-actions {
    white-space: nowrap;
    width: 1%;
}
.eur-btn-edit {
    background: #447e9b;
    font-size: 11px;
    padding: 3px 6px;
    display: inline-block;
}
.eur-btn-edit:hover {
    background: #34647a;
    color: white;
}
.eur-btn-delete {
    font-size: 11px;
    padding: 3px 6px;
    background: #b30000;
    display: inline-block;
    margin-top: 4px;
}
.eur-btn-delete:hover {
    background: #800000;
    color: white;
}
.eur-annee-form {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.eur-annee-form label {
    font-weight: bold;
}
.eur-filter-input {
    width: 90%;
    padding: 4px;
    font-size: 11px;
}
