body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.banner {
    background-color: purple;
    color: white;
    padding: 10px;
}

.banner img {
    height: 50px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 24px;
    padding: 15px;
    background-color: purple;
    color: white;
    border: none;
    margin-bottom: 10px;
}

.section-title:hover {
    background-color: #5e2a95;
}

.section-title.active {
    background-color: #3b185f; /* Darker shade for active state */
    color: white;
}

.section-total {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-top: 5px;
}

.stat-description {
    font-size: 16px;
    color: purple;
    font-weight: bold;
    margin-top: 5px;
}

.stat-number {
    font-size: 20px;
    font-weight: bold;
}

.footer {
    background-color: purple;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: auto;
}

/* Add fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Custom grid class for 5 columns */
@media (min-width: 1200px) {
    .col-lg-5th {
        flex: 0 0 20%;
        max-width: 20%;
    }
}
