.main-content {
    background: url(../assets/img/seringue.jpg);
    background-position: center;
    background-size: cover;
}

.main-content .section h1 {
    margin: 0;
    padding: 2rem 0rem;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-group label {
    font-weight: bold;
    color: #002866;
}

.form-group input,
.form-group select {
    padding: 0.5rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.card {
    padding: 2rem;
    box-shadow: 1px 0.5px 10px #29292972;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    width: 700px;
    max-width: 100%;
}

.creneau-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.creneau {
    padding: 0.5rem;
    border: 2px solid #6AA9C9;
    border-radius: 4px;
    color: #6AA9C9;
    font-size: 13px;
    flex: 1;
    text-align: center;
}

.creneau:hover {
    cursor: pointer;
    background: #6AA9C9;
    color: white;
}

.form-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fg-radio {
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 0.3rem;
}

.fg-radio:hover label {
    cursor: pointer;
    color: #6AA9C9;
}

.info {
    padding: 1.5rem;
    background: #efefef;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.info i {
    font-size: 2.5em;
    color: #002866;
}

.info p {
    font-size: 13px;
    color: #002866;
}

#customers {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#customers td,
#customers th {
    border: 1px solid #ddd;
    padding: 8px;
    max-width: 100%;
    font-size: 13px;
    text-overflow: ellipsis;
}

#customers tr:nth-child(even) {
    background-color: #f2f2f2;
}

#customers tr:hover {
    background-color: #ddd;
}

.form-group input[type='radio'] {
    display: none;
}

.form-group input[type='radio']:checked+label {
    background: #6AA9C9;
    color: white;
    border: none;
}

h4 {
    font-size: 1.0em;
    color: #002866;
    margin-top: 1rem;
}

h3.paiement {
    margin-top: 2rem;
    padding: 0.5rem;
    border-bottom: 2px solid #6AA9C9;
}