.tabs {
    display: flex;
    justify-content: center;
    width: 100%; 
    margin-bottom: 20px; 
    text-align: center; 
}

.tabs span {
    padding: 10px 20px; 
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tabs span.active {
    background-color: #496ea2; 
    color: white; 
}

.tabs span:not(.active) {
    background-color: #e9ecef; 
    color: #496ea2; 
}
