/* Conteneur principal */
.container {
    max-width: 960px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container{
    a{
        background-color: #1c91c9;
    }
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    margin-bottom: 15px;
}

.edit-textearea-ride {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.4;
    min-height: 100px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Tableaux */
.table-ride {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.table-ride th,
.table-ride td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.table-ride th {
    background-color: #f8f8f8;
    font-weight: bold;
    color: #555;
}

.table-ride tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-ride tr:hover {
    background-color: #f1f1f1;
}