.tabs {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 200, 150, 0.8);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    gap: 10px;
    justify-content: center;
}

.tab-button {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    cursor: pointer;
    border: none;
    background: rgba(255, 239, 211, 0.9);
    color: #5a3c2a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.tab-button:hover {
    background: #ffd8a1;
    color: #a32525;
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(to right, #e77d11, #a32525);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tab-content {
    display: none;
    padding: 25px;
    background: rgba(255, 239, 211, 0.95);
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #ddd;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        padding: 10px;
    }

    .tab-button {
        width: 100%;
        min-width: unset;
        margin: 2px 0;
    }

    .tab-content {
        padding: 15px;
        margin-top: 15px;
    }
}