.tabs-container {
    display: flex;
    max-width: 900px; /* Adjust width as needed */
    margin: 100px auto 0; /* Add top margin to push it below header */
    align-items: flex-start; /* Align content to the top */
}

.tabs-containerpc {
    display: flex;
    max-width: 1000px; /* Adjust width as needed */
    margin: 100px auto 0; /* Add top margin to push it below header */
    align-items: flex-start; /* Align content to the top */
}
.tabs {
    display: flex;
    flex-direction: column;
    width: 250px; /* Adjust width as needed */
    max-height: 400px; /* Prevent it from becoming too large */
   /*  overflow-y: hidden !important; Add scrolling if too many tabs */
    /* border-right: 2px solid #ddd; */
    border:none !important;
    
}
.tab {
    padding: 15px;
    cursor: pointer;
    /* border: 1px solid #ddd; */
    border:none !important;
    text-align: center;
    white-space: nowrap; /* Prevents breaking text */
    overflow: hidden;
    text-overflow: ellipsis; /* Add "..." for long titles */
    background-color:#fff !important;
    text-align:left;
}


.tab.active {
   /* background-color: #007bff;
    color: white;*/
    background-color: #fff;
    color: #CFA935;
}
.p-regular {
    min-width:700px !important;
    max-width:100% !important;
}
.content {
    flex: 1; /* Takes up remaining space */
    /* padding: 10px; */
    min-width: 700px; /* Ensure content has enough width */
    max-width: 100%; /* Prevent overflow */
    margin-left: 71px ;
}

.content-item {
    display: none;
}

.content-item.active {
    display: block;
}

/* Navigation buttons */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 20px;
}
button { 
        padding: 9px 20px;
        font-size: 16px;
        font-weight: 500;
        font-family: var(--primary-font);
        border: 1px solid var(--black-color);
        /* color: var(--black-color); */
        transition: all 0.5s ease-in-out;
        border-radius: 4px;
    
}
button:disabled {
    background: #ccc;
}

