.profile_container {
  position: relative;
  background-image: url("../assets/imgs/bg_register.webp");
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2px;
}

.profile_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.profile_content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px; /* Limite la largeur totale sur des écrans larges */
  gap: 420px;
  z-index: 2;
  flex-wrap: wrap;
  margin-left: 30px;
}

.profile_left,
.profile_right {
  flex: 1;
}
.checkbox-container ul {
  color: #f5f1f5 !important;
  padding-left: 20px;
}
.profile_container h1 {
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 4rem;
  margin-bottom: 40px; /* Espace sous le titre */
  z-index: 2;
  margin-top: 5px;
}

.profile_content form label,
.profile_content form input {
    
  margin-bottom: 5px; /* Espacement vertical entre chaque champ */
  font-size: 1.2rem;
  color: #ffffff; /* Couleur du texte */
  margin-top: 10px;
  width: 30%; /* Largeur fixe du label */
 /* white-space: nowrap;*/
}

.profile_left form .form_group {
  display: flex;
  align-items: center; /* Aligne verticalement le label et l'input */
  justify-content: space-between; /* Espace entre le label et l'input */
  margin-bottom: 25px; /* Espace sous chaque ligne de formulaire */
}

.checkbox-list {
  list-style-type: none; /* Enlève les puces de la liste */
  
}

.form_group2 {
  display: block;
  align-items: center; /* Aligne verticalement le label et l'input */
  justify-content: space-between; /* Espace entre le label et l'input */
  margin-bottom: 25px; /* Espace sous chaque ligne de formulaire */
}
.profile_content input[type="text"],
.profile_left input[type="password"],
.profile_left textarea,
.form_button {
  text-align: center;
  padding: 10px;
  border: 1px solid #130101;
  border-radius: 30px;
  font-size: 1rem;
  width: 90%;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.583);
  color: #000000; /* Texte en noir */
}

.profile_right {
  color: #ffffff; /* Couleur du texte en blanc */
  margin-top: 10px;
  padding: 0;
  font-size: 1.2rem;
}


.profile_right input[type="text"] {
  margin-bottom: 15px;
}

/* Styles des boutons */
.profile_content .gender_container {
  display: flex;
}

.profile_content .gender_container label {
  font-size: 1.2rem; /* Agrandit le texte des labels */
  margin-right: 50px;
}

.profile_content .gender_container input[type="radio"] {
  accent-color: #4f6dc0; /* Personnalise la couleur du bouton radio */
  margin-right: 8px; /* Espace entre le bouton et le label */
  transform: scale(1.2); /* Agrandit les boutons radio */
  vertical-align: middle; /* Aligne verticalement avec le label */
}

.gender_label {
  display: inline-flex;
  margin-left: 5px;
}

.btn_password {
  margin-top: 15px;
  border: none;
  height: 60px;
  border-radius: 100px;
  width: 73%;
  position: relative;
  font-size: 30px;
  padding-right: 25px;
  background-color: #cd57dd;
  padding: 5px 20px;
  text-decoration: none;
  color: black;
  transition: 0.3s;
  margin-left: 155px;
  margin-bottom: 27px;
}

.delete_btn {
  margin-top: 5px;
  border: none;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  font-size: 22px;
  color: rgba(0, 0, 255, 0.473);
}

.profile_container .btn_form {
  border: none;
  background-color: rgba(255, 255, 255, 0.7);
  height: 60px;
  border-radius: 100px;
  width: 350px;
  position: relative;
  font-size: 35px;
  padding-right: 30px;
  z-index: 2;
}

.profile_container .circle_profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f805fe, #548cdd);
  position: absolute;
  top: -20%;
  left: 78%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.profile_container .circle_profile::before {
  content: "";
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: black;
  position: absolute;
  top: 20;
  left: 20;
}

.profile_container .inner_circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f805fe, #548cdd);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.profile_container .inner_circle::before {
  content: "";
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 20;
  left: 20;
}

/* Styles spécifiques pour les images de profil et vidéos dans la colonne droite */
.profile_right img {
  width: 110px;
  height: 100px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
}

#profil_pic {
  margin-top: 10px;
}

.input_picture {
  display: flex;
  flex-direction: row;
  margin-bottom: -10px;
  margin-top: 5px;
  background-color: #cd57dd;
  color: black;
  height: 30px;
}


.picture_item {
  align-items: center; /* Centre le contenu horizontalement */
}

.picture_container img {
  width: 110px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px; /* Espace sous l'image */
}

.video_container,
.picture_container {
  display: flex;
  flex-wrap: wrap; /* Les vidéos passent à la ligne si l'espace manque */
  gap: 20px; /* Espace entre chaque vidéo */
  margin-top: 10px;
}


/* Conteneur pour chaque bloc vidéo + URL */
.video_embed_container,
.picture_item {
  margin-top: 5px;
  display: flex;
  flex-direction: column; /* Empile la vidéo et l'URL verticalement */
}

.video_embed_container {
  width: 180px;
}

.video_url_container {
  margin-bottom: 5px;
  text-align: center;
}

.availability_container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    color: #000000;
}

.availability_container h3 {
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.calendar_container {
    border: 1px solid #333;
    border-radius: 5px;
}

.calendar_header {
    background-color: #f805fe;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.calendar_body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 10px;
}

.calendar_day {
    text-align: center;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 3px;
}

.calendar_day.available {
    background-color: #548cdd;
    color: #fff;
    cursor: pointer;
}

.calendar_day.not-available {
    background-color: #444;
}

/* FullCalendar Customization */
.fc {
    color: white; /* Text color for dates */
}

.fc .fc-toolbar-title {
    color: black;
    font-size: 1.5em;
}

.fc .fc-button-group button {
    background-color: #cd57dd;
    border: none;
    color: black;
}

.fc .fc-button-group button:hover {
    background-color: #d29fd8;
}

.fc .fc-today-button {
    background-color: #d29fd8;
    border: none;
    color: black;
}

.fc .fc-today-button:hover {
    background-color: #cd57dd;
}

.fc .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active {
    background-color: #548cdd;
    color: white;
}

.fc .fc-daygrid-day-number {
    color: black;
    text-decoration: none;
}

.fc .fc-daygrid-day-frame {
    border: 1px solid #ddd;
    background-color: #fff;
}

.fc .fc-day-today .fc-daygrid-day-frame {
    background-color: #f0f0f0;
}

.fc .fc-col-header-cell {
    color: #000;
    background-color: #fff;
    border: 1px solid #ddd;
}

.availability_content {
    display: flex;
    gap: 20px;
}

#calendar {
    flex: 2;
}

.time_selection_container {
    flex: 1;
    color: #000000;
}

.time_selection_container h4 {
    text-transform: uppercase;
    color: #f805fe;
}

.time_slots {
    margin-bottom: 20px;
}

.time_slot {
    background-color: #eee;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    color: #000;
    border: 1px solid #ddd;
}

.fc .fc-daygrid-day.selected .fc-daygrid-day-frame {
    background-color: #548cdd;
}

.time_slot.selected {
    background-color: #548cdd;
}

.last_step label {
    display: block;
    margin-bottom: 10px;
}

.btn_edit {
    background-color: #cd57dd;
    border: none;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

.calendar_wrapper {
    max-width: 800px; /* Adjust this value as needed */
    margin: 0 auto;
}


@media (max-width: 1600px) {
  .btn_password {
    margin-left: clamp(10px, 8.7vw, 140px);
  }
}
@media (max-width: 1085px) {
  .profile_content {
    margin-left: 70px;
    margin-right: 55px;
  }

  .btn_password {
    margin-left: clamp(50px, 10.5vw, 260px);
  }

  .profile_content {
    gap: 155px;
  }
}

@media (max-width: 813px) {
  .btn_password {
    margin-left: clamp(70px, 23vw, 260px);
  }

  .gender_label {
    margin-left: clamp(1px, 1vw, 200px);
  }

  .profile_content .gender_container label {
    margin-right: clamp(40px, 20vw, 200px);
  }

  .profile_content {
    padding: 3%;
  }
}

@media (max-width: 578px) {
  .profile_content {
    justify-content: flex-end;
  }

  .profile_left {
    width: 80%;
  }
}