/* Conteneur principal */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Titre principal */
.page-title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Carte d'information */
.card {
    border-radius: 12px;
    background-color: #ffffff;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
    margin-bottom: 25px;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Image de l'événement */
.event-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
}

/* Boutons */
.btn {
    padding: 10px 25px;
    border-radius: 25px;
    transition: transform 0.2s, background-color 0.3s;
    font-size: 15px;
    cursor: pointer;
    border: none;
}

.btn-secondary {
    background-color: #000;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #000;
    color: #fff;
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-danger {
    background-color: #000;
    color: #fff;
}

.btn-danger:hover {
    background-color: #444;
    transform: translateY(-2px);
}

/* Formulaires */
.form-group {
    margin-bottom: 20px;
}

label {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    background-color: #f8f8f8;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #aaa;
    background-color: #fff;
}

/* Tableau des inscrits */
.inscriptions-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.inscriptions-table th {
    background-color: #222;
    color: #fff;
    font-weight: normal;
    padding: 12px 15px;
    text-align: left;
}

.inscriptions-table td {
    background-color: #fff;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.inscriptions-table tbody tr:hover {
    background-color: #fafafa;
}

a {
    text-decoration: none;
}
/* Ajustement responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .page-title {
        font-size: 24px;
    }

    .event-image {
        height: 200px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .inscriptions-table, .inscriptions-table th, .inscriptions-table td {
        display: block;
        width: 100%;
    }

    .inscriptions-table th {
        text-align: center;
    }

    .inscriptions-table td {
        text-align: center;
        border: none;
        border-bottom: 1px solid #f0f0f0;
    }
}
