/* =========================================
	DOWNLOAD TABS STYLING
   ========================================= */

/* Container */
.custom-tabs-container {
    margin-top: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    clear: both; /* Ensures it doesn't overlap floated images */
}

/* Navigation Bar */
.tab-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}

.tab-nav li {
    margin: 0;
}

.tab-nav li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    border-right: 1px solid #ddd;
    font-weight: 600;
    transition: background 0.2s;
}

.tab-nav li a:hover {
    background: #eee;
}

/* Active Tab Button */
.tab-nav li a.active {
    background: #fff;
    color: #000;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
}

/* Content Area */
.tab-content {
    padding: 20px;
    background: #fff;
}

/* Logic for hiding/showing */
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
