﻿.list-group-item {
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.list-group-item:hover {
    background-color: #007bff;
    color: white;
    transform: translateX(5px);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

.list-group-item.active-link {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
}

.guide-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.4s ease-in-out;
    margin-bottom: 20px;
    overflow-x: auto;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guide-content h4, .guide-content h5 {
    font-weight: bold;
    color: #0d6efd;
}

.guide-content ul, .guide-content ol {
    margin-left: 20px;
}

.list-group-item i {
    margin-right: 6px;
}

.responsive-pdf {
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767.98px) {
    .responsive-pdf iframe {
        height: 450px !important;
    }
}
