.page-id-2212 .apps86-swal .swal2-html-container {
  max-height: 60vh;
  overflow-y: auto;
}

.page-id-2212 .apps86-swal button{
  border-radius: 500px !important;
}

/* Styles des onglets */
.apps86-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.apps86-tab {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s;
  position: relative;
}

.apps86-tab:hover {
  color: #333;
  background: #f5f5f5;
}

.apps86-tab.active {
  color: #333;
  border-bottom-color: #79C4B5;
  font-weight: 600;
  background-color: transparent;
}

.apps86-tab-count {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: #e0e0e0;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
}

.apps86-tab.active .apps86-tab-count {
  background: #79C4B5;
  color: white;
}

/* Media queries pour mobile */
@media (max-width: 768px) {
  .apps86-tabs {
    gap: 5px;
  }

  .apps86-tab {
    padding: 10px 12px;
    font-size: 13px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .apps86-tab-count {
    margin-left: 0;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .apps86-tabs {
    gap: 3px;
  }

  .apps86-tab {
    padding: 8px 8px;
    font-size: 12px;
  }

  .apps86-tab-count {
    font-size: 11px;
    padding: 1px 6px;
  }
}