/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    background-color: #f8f9fa;
    flex-direction: column;
}

/* ==========================================================================
   Accordion Components
   ========================================================================== */
.accordion-button {
    font-weight: bold;
    font-size: 18px;
}

.accordion-button:not(.collapsed) {
    background-color: #007bff;
    color: white;
}

/* ==========================================================================
   List Group Components
   ========================================================================== */
.list-group-item a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.list-group-item a:hover {
    color: #007bff;
    padding-left: 5px;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.source-section {
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
}