.guide-card {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;    
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;    
}

.guide-card img {
    max-width: 200px;
    object-fit: cover;
    
}

.gide-img{
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.guide-img:hover{
    cursor: pointer;
    box-shadow: 0 10px 12px rgba(0,0,0,0.30);
}


.guide-card-body {
    padding: 1rem 1rem 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    flex: 1;
}

.guide-iframe{
    width: 100%;
    height: 100%;
    border: none;
}
.modal-body{
    height: 80vh;
}
.border-yellow {
    border-left: 5px solid #ffc107;
}

.border-green {
    border-left: 5px solid #28a745;
}

.border-red {
    border-left: 5px solid #dc3545;
}

p{
    margin-bottom: 0;
}

.pdf-options-link {
    color: white;
    background-color: #015b28;
    border-radius: 8px; 
    padding: 4px 6px;  
    text-decoration: none; 
    display: inline-block; 
    font-size: 10px; 
    font-weight: 700;   
}

@media (max-width: 767px) {
    .guides-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .guide-card {
        flex-direction: column;
        align-items: center;
    }

    .guide-card img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .guide-card-body {
        padding: 1rem;
    }
    .pdf-actions-icons img{
        width: 24px;
    }
    .yt-img{
        width: 60px !important;
    }
    .cidadao-img{
        width: 60px !important;
    }
}

