/* ========== ESTILOS GLOBALES FERIAWEB ========== */

/* GENERAL */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fdfdfd;
    color: #333;
}

/* BOTONES */
.btn {
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
}

.btn-primary {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-success {
    background-color: #28a745;
    border-color: #218838;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #5a6268;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #c82333;
}

/* TITULARES Y TEXTOS */
h2, h3, h4, h5 {
    color: #202020;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
}

/* ACORDES */
.acorde-badge {
    background-color: #f0f0f0;
    color: #000;
    min-width: 50px;
    min-height: 28px;
    display: inline-block;
    padding: 6px 10px;
    text-align: center;
    font-family: monospace;
    font-size: 0.95rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    vertical-align: middle;
}

.acorde-vacio {
    color: transparent;
}

    .acorde-vacio::before {
        content: " ";
        visibility: hidden;
    }

/* BARRA DE COMPÁS */
.barra-compas {
    display: inline-block;
    width: 1px;
    height: 32px;
    background-color: #999;
    margin: 0 8px;
    vertical-align: middle;
}

/* ETIQUETAS */
.etiqueta-toggle {
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.9rem;
}

/* MENSAJES */
.alert {
    font-size: 0.95rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.acorde-cuadro {
    background-color: #f0f0f0;
    font-family: monospace;
    font-size: 0.9rem;
}

.separador-compas {
    font-weight: bold;
    margin: 0 5px;
    color: #555;
}

.btn-circle {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-lateral {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.05);
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 3rem;
    color: black;
    z-index: 1000;
    cursor: pointer;
    text-decoration: none;
}

    .nav-lateral.izquierda {
        left: 10px;
    }

    .nav-lateral.derecha {
        right: 10px;
    }

    .nav-lateral:hover {
        background: rgba(0, 0, 0, 0.1);
        color: black;
    }