body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #28a745;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 35px;
}

.ajout-club {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    text-align: center;
    background-color: #fff;
    color: #28a745;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.ajout-club:hover {
    background-color: #28a745;
    color: white;
}

.club {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.club-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.club-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.club-card img {
    width: 100%;
    height: 200px;
}

.club-info {
    padding: 20px;
}

.club-info h2 {
    margin: 0 0 10px;
    color: #28a745;
}

.club-info p {
    margin: 5px 0;
}

.actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.actions .suppression {
    padding: 10px 15px;
    text-align: center;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.actions .suppression {
    background-color: #dc3545;
}

.actions .suppression:hover {
    background-color: #c82333;
}

/* style du formulaire */
.formulaire {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.formulaire label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #28a745;
}

.formulaire input[type="text"],
.formulaire input[type="number"],
.formulaire input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.formulaire input[type="submit"] {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.formulaire input[type="submit"]:hover {
    background-color: #218838;
}
