/* Estilos para configuracion */

.theme-option {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 10px;
    transition: all 0.3s;
}

.theme-option:hover {
    transform: scale(1.03);
}

.theme-option.selected {
    border-color: #0d6efd;
}

.theme-preview {
    width: 100%;
    height: 80px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.theme-claro {
    background: linear-gradient(135deg, #f8f9fa 50%, #ffffff 50%);
}

.theme-oscuro {
    background: linear-gradient(135deg, #343a40 50%, #212529 50%);
}

.theme-azul {
    background: linear-gradient(135deg, #e3f2fd 50%, #bbdefb 50%);
}


    