/* NEW STYLES FOR TABS */
.tabs {
    display: flex;
    margin-bottom: 10px;
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 5px;
}
.tab-button {
    flex-grow: 1;
    background: none;
    border: none;
    padding: 10px;
    color: #a0a0a0;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.2s, color 0.2s;
}
.tab-button.active {
    background-color: #333;
    color: #ffffff;
    font-weight: bold;
}
.info-text {
    font-size: 12px;
    color: #a0a0a0;
    text-align: center;
    margin-bottom: 15px;
}