.tabs {
    max-width: 700px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: #222;
    /* Dark background for tab area */
}

.tab-buttons button {
    flex: 1;
    padding: 1rem;
    background: #f4f4f4;
    border: none;
    font-size: 1rem;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.tab-buttons button:hover {
    background: #A68A6D;
    color: #000;
}

.tab-buttons button.active {
    background: #A68A6D;
    color: #000;
}

.custom-tab-widget .tab-content {
    display: none;
    padding: 2rem;
    padding-bottom: 0;
    animation: fadeIn 0.5s ease-in-out;
    background: #fff;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}