/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 11 2024 | 05:05:17 */
.tab-container {
    font-family: "Chivo", sans-serif;
    font-size: 16px;
    display: flex;
    gap: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
		width:100%;
		margin-left: none;
		margin-right: none;
}

.tabs {
    display: flex;
    width: 35%;
		height: 100%;
    flex-direction: column;
    border-right: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
}

.tab {
		flex: 1;
		padding: 16px 8px;
    border-bottom: 1px solid #ddd;
    background-color: #55322d;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    color: #cdc9c9;
    font-size: 0.8rem;
}



.tab:last-child {
    border-bottom: none;
}

.tab:hover {
    background: #4a1c1c6c;
}

.tab.active {
    font-weight: 600;
    background-color: #f0ad4e;
    color: #4a1c1c;
    border-right: 2px solid #fbf4f4;
}

.content-wrapper {
    min-width: 65%;
    border-radius: 0 6px 6px 0;
    /* Add scrolling for content */
    overflow-y: auto;
    height: 100%;
    /* Customize scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #55322d transparent;
}

.content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.content-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.content-wrapper::-webkit-scrollbar-thumb {
    background-color: #55322d;
    border-radius: 4px;
}

.tab-content {
    display: none;
    padding: 24px;
    height: 100%;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #fbf4f4;
    font-size: 1.2rem;
}

audio {
    width: 100%;
    margin-top: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tab-container {
        flex-direction: column;
        margin: 0;
    }

    .tabs {
        width: 100%;
        height: auto;
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
		border-radius: 0px;
    }

    /* Customize horizontal scrollbar for tabs */
    .tabs::-webkit-scrollbar {
        height: 4px;
    }

    .tabs::-webkit-scrollbar-track {
        background: transparent;
    }

    .tabs::-webkit-scrollbar-thumb {
        background-color: #55322d;
        border-radius: 4px;
    }

    .tab {
        flex: none; /* Remove equal width distribution */
        padding: 12px 24px; /* More horizontal padding for touch */
        min-width: max-content; /* Ensure text fits */
			  border-bottom: none;
    }

    .tab:first-child {
        border-radius: 0px;
    }

    .tab:last-child {
        border-right: none;
        border-radius: 0px;
    }

    .tab.active {
        border-right: 1px solid #ddd;
    }

    .content-wrapper {
        border-radius: 0 0 6px 6px;
    }
}

/* Additional responsive adjustments for very small screens */
@media (max-width: 480px) {
    .tab {
        padding: 10px 14px;
        font-size: 14px;
    }

    .tab-content {
        padding: 16px;
    }

    .tab-content h2 {
        font-size: 1.2rem;
    }

    audio {
        margin-top: 8px;
    }
}

