/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* Tabs container */
/* Tabs container */
.custom-elementor-tabs {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

/* Tabs list */
.custom-tabs-list {
    display: flex;
    flex-wrap: wrap;
/*     border-bottom: 2px solid #ddd; */
    padding: 0;
    margin: 0;
    list-style: none;
    background: #fff;
}

/* Individual tab */
.custom-tab {
    margin: 0;
    padding: 0;
    flex: 1;
    text-align: center;
    border-right: 1px solid #ddd; /* Separation border between tabs */
}

.custom-tab:last-child {
    border-right: none; /* Remove border for last tab */
}

.custom-tab a {
    display: block;
    padding: 12px 20px;
    color: black;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

/* Active & Hover Styles */
.custom-tab.active a,
.custom-tab a:hover {
    color: #dd223b;
    border-bottom: 2px solid #dd223b;
}

/* Tab content */
.custom-tab-content {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #ddd; /* Add border above tab content */
}

/* Responsive styling */
@media (max-width: 768px) {
    .custom-tabs-list {
        flex-direction: column;
    }
    .custom-tab {
        flex: none;
        width: 100%;
        border-right: none; /* Remove borders on mobile */
        border-bottom: 1px solid #ddd; /* Add bottom border for separation */
    }
    .custom-tab:last-child {
        border-bottom: none;
    }
}
