/* Global styling */
body {
    margin: 0;
    padding: 0;
    background-color: #1b1b1c; /* Fond sombre */
    color: white;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 340px; /* Largeur ajustée */
    text-align: center;
}

.logo {
    width: 180px; /* Taille du logo augmentée */
    margin-top: 20px;
}

.content {
    background-color: #1E1E1E;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), /* Ombre légère noire */
                0 0 15px 5px rgba(80, 252, 148, 0.5); /* Aura verte légère */
    transition: opacity 0.5s ease-in-out; /* Ajout d'une transition */
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold; /* Texte en gras */
}

p {
    font-weight: bold; /* Texte en gras */
}

.seed-inputs {
    display: grid;
    gap: 10px;
}

.row {
    display: flex;
    gap: 10px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    background-color: rgba(43,49,57,255); /* Boutons Words en gris foncé */
    color: white;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 14px;
}

/* Section des actions */
.actions {
    margin-top: 20px;
}

/* Bouton "Clear All" en vert */
.clear {
    color: #50fc94; /* Vert personnalisé */
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

/* Style des boutons */
.buttons {
    display: flex;
    justify-content: space-between;
}

button {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Bouton "Back" transparent avec bordure verte */
button.back {
    background-color: transparent;
    color: #50fc94; /* Vert personnalisé */
    border: 1px solid #50fc94;
}

/* Bouton "Next" désactivé avec un voile gris-vert */
button.next[disabled] {
    background-color: rgba(80, 252, 148, 0.2); /* Couleur gris-vert inactif */
    color: rgba(255, 255, 255, 0.5); /* Texte plus clair */
    cursor: not-allowed;
}

/* Bouton "Next" activé avec fond vert personnalisé */
button.next {
    background-color: #50fc94; /* Vert personnalisé */
    color: black;
}
