#rdv-calendar table { width:100%; border-collapse:collapse; margin-bottom:20px; }
#rdv-calendar th, #rdv-calendar td { border:1px solid #ccc; padding:4px; vertical-align:top; text-align:center; }

#rdv-calendar.loading {
    position: relative;
    color: #555;
    font-style: italic;
}
#rdv-calendar .creneau {
    float: left;
    margin-right: 4px;
}
#rdv-calendar.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid #ccc;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.rdv-slot {
  display:inline-block;
  padding:4px 6px;
  background:#0073aa;
  color:#fff;
  margin:2px 0;
  border-radius:4px;
  text-decoration:none;
}
.rdv-slot:hover { background:#005177; }

#rdv-form input[readonly],
#rdv-form input[disabled] {
  background:#eee;
  cursor:not-allowed;
}

#rdv-form { max-width:600px; margin-left:auto; margin-right:auto; }
button#rdv-submit { padding:8px 12px; cursor:pointer; }
button#rdv-submit[disabled] { background:#999; cursor:not-allowed; }