#loading.loading {
    top: 100px;
}

.sistema-clasificacion {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-family: Arial, sans-serif;
}

.sistema-titulo {
    font-family: 'Raleway', sans-serif;
    color: #23374d;
    border-bottom: 2px solid #1fb5d1;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.sistema-card {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-top: 4px solid #1fb5d1;
}

.sistema-card-header {
    font-family: 'Raleway', sans-serif;
    background-color: #23374d;
    color: white;
    border-radius: 4px 4px 0 0;
    padding: 15px 20px;
    font-weight: 600;
}

.sistema-clasificacion-item {
    display: flex;
    margin-bottom: 10px;
    padding: 5px 0;
}

.sistema-icono {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    border-radius: 50%;
    background-color: #23374d;
    color: white;
    flex-shrink: 0;
}

.sistema-info, .sistema-info ul li {
    font-family: 'Raleway', sans-serif;
    color: #333;
    flex-grow: 1;
}

.sistema-info strong {
    font-family: 'Raleway', sans-serif;
}

.sistema-nota {
    font-style: italic;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 15px;
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.tag-clasificacion {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 5px;
}

.tag-clasificado {
    background-color: #28a745;
    color: white;
}

.tag-ventaja {
    background-color: #007bff;
    color: white;
}

.tag-riesgo {
    background-color: #dc3545;
    color: white;
}

.leyenda {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.leyenda-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.color-box {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    border-radius: 3px;
}

.clasificacion-box {
    background-color: #28a745;
}

.ventaja-box {
    background-color: #007bff;
}

.descenso-box {
    background-color: #dc3545;
}

/* Media query para pantallas pequeñas */
@media (max-width: 767px) {
    .sistema-clasificacion-item {
        flex-direction: column;
    }
    
    .sistema-icono {
        margin-bottom: 5px;
    }

    .sistema-info, .sistema-info ul li {
        font-size: 14px;
    }
}