.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 15px; /* Add space between the message and button */
  }
  
  .loading-logo {
    width: 30px;
    height: 30px;
    border: 5px solid #ccc;
    border-top: 5px solid #333;
    border-radius: 50%;
    margin-right: 15px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }



  /* Style for the accordion buttons */
.accordion-button {
    background-color: #f3c50e;
    color: white;
    cursor: pointer;
    padding: 10px;
    text-align: left;
    width: 100%;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #6b2b91;
}

/* Style for the accordion content */
.accordion-content {
    padding: 10px;
    background-color: #f1f1f1;
    display: block;
    overflow: hidden;
}
/* Add some space between the sections */
.accordion + .accordion {
    margin-top: 10px;
}

code {
    background-color: #797979;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: Consolas, "Courier New", monospace;
}



.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.grid-item {
    text-align: center;
}

.grid-item img {
    max-width: 100%;
    height: auto;
}

.grid-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

ul {
    padding-left: 1.2em; /* Ajuste cette valeur pour contrôler l'espacement du texte par rapport au point */
    margin-left: 0; /* Enlève la marge par défaut */
    list-style-position: outside;
    text-align: left; /* Aligne le point avec le texte */
}

ul.actions {
    padding-left: 0; /* Enlève l'espacement spécifique pour cette classe */
    margin-top: 1em; /* Ajoute un espacement au-dessus si nécessaire */
}

ul.actions li {
    display: inline-block; /* Garde les éléments d'action sur la même ligne */
}

button {
    margin-left: 0; /* Enlève la marge supplémentaire pour le bouton */
}