/* profil_utilisateur.css */
.styled-panel {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .custom-input, .custom-select {
    background-color: #fdfdfd;
    border: 1px solid #ddd;
    /* padding: 20px; */
    border-radius: 4px;
    transition: border-color 0.3s;
  }
  
  .custom-input:focus, .custom-select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
  }
  
  .custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ddd' viewBox='0 0 4 5'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' d='M2 0L0 2h4L2 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 8px 10px;
  }
  
  button:hover {
    opacity: 0.9;
    transition: opacity 0.2s ease-in-out;
  }
  
  .text-center {
    margin-top: 20px;
  }
  
  .lesInfos{
    display: none;
  }

  .labelInfo{
    display: none;
  }

  .labelInfo1{
    display: inline;
  }

  @media (max-width: 767px) {
    .lesInfos{
      display: block;
    }
    .labelInfo{
      display: inline;
    }
    .labelInfo1{
      display: none;
    }
  }


  .maintenance-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background-color: #f5f5f5;
    color: #333;
    font-family: Arial, sans-serif;
}

.maintenance-page h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.maintenance-page p {
    font-size: 1.2em;
    margin: 0.5em 0;
}

.maintenance-page strong {
    color: #ff4500;
}

.timer {
  font-size: 25px;
  color: black; /* Couleur par défaut en noir */
}

.timer.alert {
  color: red; /* Couleur d'alerte quand le temps restant est inférieur à 10 minutes */
}

