/* Add this to template-main.css */
.footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid #e7e7e7;
}

.footer h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff; /* Make headlines white */
}

.footer p, .footer ul, .footer li {
    font-size: 14px;
    color: #6c757d;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footer .text-center {
    margin-top: 20px;
}

#footer .copyright {
    font-size: 14px;
    color: #6c757d;
}

#footer .credits {
    font-size: 14px;
    color: #6c757d;
    margin-top: 10px;
}

#footer .credits a {
    color: #007bff;
    text-decoration: none;
}

#footer .credits a:hover {
    text-decoration: underline;
}


.accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-weight: bold;
    border: none;
    box-shadow: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:hover {
    background-color: #e2e6ea;
    color: #000;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Hide the ::after content for specific buttons */
#headingHome .accordion-button::after,
#headingStats .accordion-button::after,
#headingDocs .accordion-button::after {
    content: none;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    background-color: #fff;
    border-top: 1px solid #dee2e6;
    padding: 1rem;
    transition: background-color 0.3s ease;
}

.accordion-body a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.accordion-body a:hover {
    color: #0056b3;
}