.contenedor-dados {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    min-height: 79vh;
}

.configuracion {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    column-gap: 3rem;
}

.seccion-dados-clasicos, .seccion-dados-fate {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

select, input, button {
    padding: 10px;
    margin: 5px 0;
}

#dados-contenedor {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.dado {
    width: 80px;
    height: 80px;
    background-color: #3498db;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    border-radius: 10px;
    transition: transform 0.5s;
}

.dado-girando {
    animation: girar 0.5s infinite linear;
}

@keyframes girar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}