main {
    min-height: 100vh;
}

h1 {
    text-align: center;
}

.dispo {
    background-color: #4CAF50;
    color: white;
}
.indispo {
    background-color: #ccc;
    color: #888;
    cursor: not-allowed;
}

div.rdv {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 60px;
}

input.form-control,
input[type=text],
input[type=email] {
    width: 100%;
    padding: 5px;
    border-radius: 8px;
    border: solid 1px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 5px 0;
} 
input[type=text] {
    margin: 0;
} 

.creneau-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin: 5px 0;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    text-align: left;
    position: relative;
    transition: background-color 0.2s ease;
}

/* Flèche à droite */
.creneau-btn::after {
    content: "›"; /* flèche simple vers la droite */
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: inherit;
}

/* Créneau dispo */
.creneau-btn.dispo {
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
}
.creneau-btn.dispo:hover {
    background-color: #45a045;
}

/* Créneau indispo */
.creneau-btn.indispo {
    background-color: #e0e0e0;
    color: #888;
    cursor: not-allowed;
}
.creneau-btn.indispo::after {
    content: "⛔";
}

button[type=submit] {
    background: #8a6345;
    width: 100%;
    margin: 5px 0;
    padding: 10px 5px;
    width: 100%;
    border: none;
    border-radius: 8px;
    color: #fff;
}