/* --- Layout général --- */
body {
    background: #f7f7f7;
    color: #333;
    font-family: "Inter", "Roboto", "Segoe UI", sans-serif;
    padding: 40px;
}

/* --- Titres --- */
h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
}

h2 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* --- Section principale --- */
.admin-section {
    max-width: 700px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* --- Formulaire --- */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    margin-bottom: 12px;
}

/* --- Bouton --- */
button {
    padding: 12px 20px;
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

button:hover {
    background: #005fa3;
}

/* --- Liste des joueurs --- */
.rsl-list {
    list-style: none;
    padding: 0;
}

.rsl-list li {
    background: #fafafa;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Bouton suppression --- */
.delete-btn {
    background: #d9534f;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.delete-btn:hover {
    background: #c9302c;
}
