/*body {
    font-family: Arial, sans-serif;
    padding: 20px;
  }
  
  h1 {
    color: #333;
  }
  
  button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
  }
  a {
    text-decoration: none;
    color: white;
  }

  #exemple{
    color:#000;
    
  }

  button:hover {
    background-color: #0056b3;
  }
  
  #apiResponse {
    margin-top: 20px;
  }
  


 
#overlay {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  background: #999;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 100;
}

#popup {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  width: 500px;
  height: 500px;
  margin-left: -250px; 
  margin-top: -250px; 
  z-index: 200;
}

.popup-content {
  text-align: center;
}

*/

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #85cef3;
  backdrop-filter: blur(10px);
  font-family: Arial, sans-serif;
}

.container {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 400px;
}

.container img {
  width: 60px;
  height: 60px;
}
#logodb{
  width: auto;
  height: 100px;
}

h1 {
  margin-bottom: 20px;
}

form {
  margin-bottom: 20px;
}

label,
input,
select {
  display: block;
  margin: 10px auto;
  width: 100%;
  text-align: left;
}

input,
select {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: calc(100% - 16px); /* To account for padding */
}

.buttons {
  display: flex;
  justify-content: space-around;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 5px;
  width: 45%;
}

a {
  text-decoration: none;
  color: white;
}

.example {
  margin: 20px 0;
}
/*
#soapResponse {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f9f9f9;
}
*/

.label-container {
  position: relative;
  display: inline-block;
}

.indicator {
  position: absolute;
  top: -4px; /* Adjust as needed */
  right: -25px; /* Adjust as needed */
  font-size: 20px; /* Adjust as needed */
  color: #007bff; /* Adjust as needed */
}


/* Boutons de sélection de compte */
.account-buttons {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin: 10px 0;
}

.account-btn {
    flex: 1;
    background-color: #e0e0e0;
    color: #333;
    border: 2px solid #ccc;
    padding: 12px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    width: auto;
}

.account-btn:hover {
    background-color: #c8e6ff;
    border-color: #007bff;
}

.account-btn.selected {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}

.account-btn small {
    display: block;
    font-size: 11px;
    opacity: 0.85;
    margin-top: 4px;
}