/* Container des boutons */
._fab-container {
  position: fixed;
  bottom: 20px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Container du logo France.Sport */
._logo-fs-container {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
}

/* FAB (Floating Action Button) */
._fab-button {
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Style des tooltips */
._fab-button::after {
  content: attr(tooltip);
  position: absolute;
  bottom: 54px;
  right: 50%;
  transform: translateX(50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
._fab-button:hover::after {
  opacity: 1;
}

/* Box */
._custom-modal .modal-dialog {
  width: 90%;
  max-width: 90%;
}
._custom-box {
  border-radius: 12px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  width: 100%;
  display: flex;
  flex-direction: column;
  /*align-items: center;
  justify-content: center;*/
}
._custom-box-title {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  color: #333;
  margin-bottom: 15px;
}
._custom-box-content {
  color: #555;
  width: 90%;
}


/* Actionbutton */
._button, ._button:hover, ._button:focus {
  background-color: #13194b;
  border: none;
  min-width: 100px;
  color: white;
  margin-top: 5px;
}
