.tab-navigation {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
    align-items: center;
}

.tab-button {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #666;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-button:hover {
    color: #333;
    background-color: #f5f5f5;
}

.tab-button.active {
    color: #007bff;
    border-bottom-color: #007bff;
    font-weight: 500;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .tab-navigation {
        gap: 4px;
        margin-bottom: 16px;
    }

    .tab-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .tab-navigation {
        gap: 2px;
    }

    .tab-button {
        padding: 8px 12px;
        font-size: 13px;
    }
}
