.h3-titulo-line {
    color: rgb(196, 59, 59);
    text-align: center;
}
.lb-tl-std-pqrs {
    margin-bottom: 20px;
    text-align: center;
}
.lb-tl-line {
    text-align: center;  
    font-size: 16px;
    font-weight: bold;  
}
.lb-info-rad-res-pqrs{
    display: grid; 
    grid-template-columns: 1fr 5fr; 
    align-items: center; gap: 10px;
    margin-top: 20px
}
.lb-tl-item-pqrs{
    font-size: 16px;
}
.btn-custom {
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.respuesta {
    background-color: #28a745; /* Verde */
    color: white;
    border: none;
}

.guia {
    background-color: #007bff; /* Azul */
    color: white;
    border: none;
}

.anexo {
    background-color: #ffc107; /* Amarillo */
    color: black;
    border: none;
}

.btn-custom:hover {
    filter: brightness(90%);
}



/* Para pantallas medianas (tablets) */
@media (max-width: 768px) {
    .lb-tl-line {
        font-size: 14px;
    }
    .lb-tl-item-pqrs{
        font-size: 14px;
    }
    .btn-custom {
        font-size: 12px;
    }
}

/* Para pantallas pequeñas (móviles) */
@media (max-width: 480px) {
    .lb-tl-line {
        font-size: 12px;
    }
    .lb-tl-item-pqrs{
        font-size: 12px;
    }
    .btn-custom {
        font-size: 8px;
    padding: 6px 8px;
    }
}