/*estilos evaluador WCAG*/
.modal-dialog {
    max-width: 95% !important;
    margin-right: auto;
    margin-left: auto;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 32px;
    height: 32px;
}

/* Form styling */
.form-container {
    margin: 0 auto;
}

.formulario-suscripcion {
    margin-top: 0px !important;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(24, 73, 169, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.btn-outline-secondary {
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.boton-indigo-registro {
    border-radius: 5px;
    background-color: #362887;
    color: white !important;
    border: none;
    padding: 0.75rem;
    font-weight: 500;
}

#form-consultar-accesibilidad {
    display: flex;
    justify-content: center;
    align-items: center;
}

#form-consultar-accesibilidad input {
    height: 48px;
    border-radius: 10px;
    margin: 0px;
}

#form-consultar-accesibilidad button {
    margin: 0px;
}

/* Divider styling */
.divider {
    position: relative;
    text-align: center;
    color: #6B7280;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #E5E7EB;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background-color: white;
    padding: 0 10px;
}

/* Hero section styling */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

/* Avatar styling */
.avatar-group {
    margin-right: 1rem;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid white;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

/* Rating styling */
.stars {
    color: #FCD34D;
    font-size: 1.2rem;
}

.rating-score {
    color: white;
    font-weight: bold;
    margin-left: 0.5rem;
}

.review-count {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Sparkle icon styling */
.sparkle-icon {
    font-size: 2rem;
}

/* Graph styling */
.grafico-auditor {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 306px;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
}

.grafico-auditor #progressText {
    position: absolute;
    font-size: 2rem;
    top: 0%;
    left: 0%;
    height: 306px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

/* Code detail styling */
.detalle-codigo {
    white-space: break-spaces;
}

.contenedor-resultados pre {
    white-space: break-spaces;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }

    .form-container {
        padding: 2rem 1rem;
    }
}