   /* Styles personnalisés pour le téléphone */

   #info {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
    display: none;
}

   .btn-orange{
      background-color: orange !important;
   }
   .info { margin-top: 10px; font-size: 14px; color: #333; }
   .special-chars { color: red; }

   .mapLocation{
      height: 280px !important;
      width: 100% !important;
   }

   .phone-preview {
    width: 280px;
    height: 500px;
    background-color: #f8f9fa;
    border-radius: 36px;
    border: 4px solid #343a40;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .phone-notch {
    width: 120px;
    height: 24px;
    background-color: #343a40;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
  }
  
  .phone-screen {
    flex: 1;
    background: linear-gradient(to bottom, #e6f2ff, #f0e6ff);
    padding: 12px;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
  }
  
  .chat-interface {
    flex: 1;
    display: flex;
    flex-direction: column-reverse;
  }
  
  .message-bubble {
    align-self: flex-start;
    max-width: 85%;
    background-color:  #0d6efd;
    color: white !important; 
    border-radius: 12px;
    border-top-left-radius: 0;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 8px;
  }
  
  .message-text {
    font-size: 14px;
    word-break: break-word;
  }
  
  .message-time {
    font-size: 11px;
    color: #6c757d;
    text-align: right;
    margin-top: 4px;
  }
  
  .input-area {
    height: 48px;
    background-color: white;
    border-radius: 24px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    padding: 0 16px;
  }
  
  .plus-button {
    height: 32px;
    width: 32px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  
  .chat-input {
    flex: 1;
    height: 32px;
    background-color: #f8f9fa;
    border-radius: 16px;
    margin: 0 8px;
  }
  
  .send-button {
    height: 32px;
    width: 32px;
    background-color: #F47500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .home-indicator {
    height: 4px;
    width: 96px;
    background-color: #343a40;
    border-radius: 2px;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Style spécifique pour le bouton orange */
  .btn-orange {
    background-color: #F47500;
    border-color: #F47500;
    color: white;
  }
  
  .btn-orange:hover {
    background-color: #E06600;
    border-color: #E06600;
    color: white;
  }
  
   /* Style spécifique pour le bouton orange */
  .btn-orange {
    background-color: #F47500;
    border-color: #F47500;
    color: white;
  }
  
  .btn-orange:hover {
    background-color: #E06600;
    border-color: #E06600;
    color: white;
  }

  @keyframes vibrate {
    0% { transform: translate(0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    80% { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
  }
  
  .animate-vibrate {
    animation: vibrate 0.3s infinite;
  }

  #theme-toggle-mode {
    position: fixed;
    bottom: 20px; /* Ajuste la distance du bas */
    right: 20px; /* Ajuste la distance de la droite */
    z-index: 9999; /* Pour s'assurer qu'il est au-dessus des autres éléments */
}

.fixed-mode {
  position: fixed;
  bottom: 20px; /* Modifier cette valeur pour ajuster la position */
  right: 20px; /* Modifier cette valeur pour ajuster la position */
}

