/* Tabs Styling */
.tabs {
    margin-bottom: 20px;
}

.tab-btn {
    width: 100%;
    padding: 10px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.tab-btn.active {
    background-color: #ddd;
    color: #000;
}

/* Tab Content */
.tab-content-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 150px; 
}

.tab-content {
    position: absolute;
    top: 0;
    left: 100%; /* Start off-screen to the right */
    width: 100%;
    opacity: 0;
    transform: translateX(0);
    transition: all 0.5s ease;
}

.tab-content.active {
    left: 0; /* Center the content */
    opacity: 1;
    transform: translateX(0);
}

.tab-content.exit-left {
    left: -100%; /* Move out to the left */
    opacity: 0;
}

