/* Tabs Bar */
.tabs-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    overflow: hidden;
}

.tabs li {
    padding: 10px 16px;
    border: 1px solid #ddd;
    /* border-bottom: none; */
    margin-right: 4px;
    cursor: pointer;
    background: #F8F9FA;
}

.tabs li.active {
  background: #fff;
    /* border-color: #99bfff; */
    font-weight: bold;
    border-bottom: none;

}

/* Dropdown Button */
#moreBtn {
    margin-left: auto;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 4px;
    display: none; /* Hidden unless needed */
}

/* Dropdown Menu */
#moreMenu {
    position: absolute;
    right: 0;
    top: 45px;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 4px;
    display: none;
    z-index: 999;
    min-width: 130px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#moreMenu div {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    white-space: nowrap;
}

#moreMenu div:hover {
    background: #f5f5f5;
}

#moreMenu div:last-child {
    border-bottom: none;
}

/* Content Box */
#contentBox {
    margin-top: -1px;
    padding: 20px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 0 0 6px 6px;
    min-height: 120px;
}
