﻿/* === Colores base === */
:root {
    --bs-primary: #43b581;
    --bs-primary-rgb: 67, 181, 129;
}

/* === Inputs y bordes al enfocar === */
.form-control:focus,
.form-select:focus,
.input-group-text:focus,
textarea:focus {
    border-color: #43b581 !important;
    box-shadow: 0 0 0 0.2rem rgba(67, 181, 129, 0.25) !important;
}

/* === Botones outline-primary === */
.btn-outline-primary {
    color: #43b581 !important;
    border-color: #43b581 !important;
}

    .btn-outline-primary:hover,
    .btn-outline-primary:focus {
        background-color: #43b581 !important;
        color: #fff !important;
        border-color: #43b581 !important;
    }

/* === Paginación activa (ej. DataTables) === */
.page-item.active .page-link {
    background-color: #43b581 !important;
    border-color: #43b581 !important;
}

/* === Focus general === */
:focus {
    outline-color: #43b581 !important;
}
/* Estilo para botón de página activa */
.page-item.active .page-link {
    background-color: #43b581 !important;
    border-color: #43b581 !important;
    color: #fff !important;
}

/* Estilo para botón hover/focus */
.page-link:hover,
.page-link:focus {
    color: #43b581 !important;
}

/* Survey Header */
.survey-header {
    background-color: #f2f2f2;
    padding: 24px 32px;
    border-bottom: 1px solid #ddd;
}

.survey-logo img {
    max-width: 90px;
}

.survey-title {
    font-size: 2rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.survey-meta {
    font-size: 0.9rem;
    color: #6b6b6b;
    line-height: 1.4;
    margin: 0;
}
