.tab-content .tab-pane {
    display: none;
}
.tab-content .tab-pane.active {
    display: block;
}
.tabs li {
    display: inline;
    margin-right: 10px;
}
.tabs li a.active {
    font-weight: bold;
    color: #002C5A;
}
.tabs-container {
    display: flex;
}
ul.tabs {
    display: flex;
    flex-direction: column;
}
/* Add this CSS to your stylesheet */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #333;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
