/* --- Reset base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}

/* --- Body --- */
body {
    background-color: #000000; /* Nero totale */
    color: #FFFFFF;           /* Bianco puro */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 50px 20px;
}

/* --- Container --- */
.container {
    background-color: #1A1A1A; /* Nero leggermente più chiaro */
    padding: 25px 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
}

/* --- Titolo --- */
h1 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
}

/* --- Form Elements --- */
label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

select, button {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    background-color: #333333; /* Grigio scuro */
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}

select:hover, button:hover {
    background-color: #555555; /* Grigio medio */
}

button {
    background-color: #FFFFFF; /* Bianco per contrasto */
    color: #000000;             /* Testo nero */
    font-weight: bold;
}

button:hover {
    background-color: #DDDDDD;
}

/* --- Output --- */
/* --- Output --- */
#output {
    margin-top: 25px; /* più spazio tra etichetta e box */
    padding: 12px 15px;
    background-color: #333333;
    border-radius: 6px;
    min-height: 40px;
    white-space: pre-line;
    font-size: 0.95rem;
    color: #FFFFFF;
}
/* --- Cookie Banner piccolo --- */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #222222;
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* --- Classe per far sparire il banner --- */
#cookie-banner.hide {
    opacity: 0;
    transform: translateY(100%);
}

/* --- Button --- */
#cookie-banner button {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
    transition: 0.2s;
}

#cookie-banner button:hover {
    background-color: #DDDDDD;
}

/* --- Discord Button --- */
#discord-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #7289DA; /* colore Discord */
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: 0.2s;
    z-index: 9999;
}

#discord-button:hover {
    background-color: #5B6EAE;
}
