/*
Theme Name: Hello Elementor Child
Theme URI: https://mediarecords.ch/
Description: Thème enfant de Hello Elementor
Author: thithi
Author URI: https://mediarecords.ch/
Template: hello-elementor
Version: 1.0.0
*/

/* Boutons de la barre d'action en haut */

/* Boutons en haut de page */
.actions-top {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.actions-top a {
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.btn-deconnexion {
    background-color: #dc3545;
}
.btn-reservation {
    background-color: #0073aa;
}

/* Bloc de chaque réservation */
.bloc-reservation {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fdfdfd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Actions d'une réservation */
.reservation-actions {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.reservation-actions a {
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}
.btn-modifier {
    background-color: #ffc107;
    color: #000;
}
.btn-annulation-reservation {
    background-color: #f44336;
    color: #fff;
}
.btn-refaire-reservation {
    background-color: #0073aa;
    color: #fff;
}

/* Toast message */
.toast-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    font-family: Arial, sans-serif;
}

/* Responsive */
@media (max-width: 600px) {
    .reservation-actions {
        flex-direction: column;
        gap: 6px;
    }
    .actions-top {
        justify-content: center;
    }
}

.CodesClients {
  max-width: 400px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  font-family: "Avenir", sans-serif;
}

.CodesClients h3 {
  text-align: center;
  color: #0073aa;
  margin-bottom: 20px;
}

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

.CodesClients input[type="text"],
.CodesClients input[type="password"] {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  background-color: #f9f9f9;
}

.CodesClients input[type="submit"] {
  width: 100%;
  background: #0073aa;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.CodesClients input[type="submit"]:hover {
  background: #005fa3;
}

.CodesClients p a {
  color: #0073aa;
  text-decoration: none;
}

.CodesClients p a:hover {
  text-decoration: underline;
}

