
.tab-container {
    width: 100%;
 
    margin: auto;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    background-color:#dccb34;
}

.tab-button {
    flex: 1;
    padding: 1em;
    background-color: #dccb34;
    color: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.tab-button:hover {
    background-color: #837334;
}

.tab-button.active {
    background-color: #4CAF50;
}

.tab-content {
    display: none;
    padding: 2em;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
