.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.custom-modal-container {
  background: white;
  padding: 24px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.custom-modal-container h2 {
	color:#000;
	text-align:center;
}

.custom-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.custom-modal-image {
  max-width: 100%;
	max-width:300px;
  height: auto;
  margin-bottom: 16px;
}

.custom-modal-copy {
  margin-top: 20px;
  background: radial-gradient(circle at center, #C488F8, #8585F7);
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Styles du menu latéral */
.thot-sidebar {
  width: 280px;
  padding: 20px 0;
  overflow-y: auto;
}

/* Styles de la barre de recherche */
.thot-search-container {
  padding: 0 20px 20px;
}

.thot-search-box {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 30px;
  border: 1px solid #e1e1e1;
  padding: 10px 15px;
  position: relative;
}

.thot-search-box input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  padding-left: 30px;
  outline: none;
}

.search-icon {
  position: absolute;
  left: 15px;
  color: #8a8a8a;
}

/* Styles des sections de menu */
.tuto-thot-menu-section {
  margin-bottom: 30px;
  padding: 0 10px;
}

.tuto-thot-menu-section h3 {
  font-size: 13px;
  text-transform: uppercase;
  color: #666;
  margin-left: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Styles des éléments de menu */
.tuto-thot-menu-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
  margin-bottom: 3px;
  transition: all 0.2s ease;
}

.tuto-thot-menu-item:hover {
  background-color: #eef1ff;
  color: #5163e9;
}

.tuto-thot-menu-item.active {
  background-color: #eef1ff;
  color: #5163e9;
  font-weight: 500;
}

.tuto-thot-menu-item svg {
  margin-right: 12px;
  color: #6e6e6e;
  transition: all 0.2s ease;
}

.tuto-thot-menu-item:hover svg {
  color: #5163e9;
}

.tuto-thot-menu-item.active svg {
  color: #5163e9;
}

.tuto-thot-menu-item span {
  font-size: 15px;
}

.tuto-thot-sidebar {
	padding-top:10px;
}

/* Styles responsifs */
@media (max-width: 768px) {
  .tuto-thot-sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
}

/* Adaptation spéciale pour Divi */
#et-main-area .tuto-thot-sidebar {
  margin-bottom: 30px;
}