.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-btn {
    padding: 8px 8px;
    border: 1px solid #D2D7DB;
    background: #F6F7FB;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000;
    font-family: "Lato", serif;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
}
.dropdown-btn:hover {
    background: #e2e3e9;
}
.dropdown-content {
    position: absolute;
    background-color: #F6F7FB;
    min-width: 300px;
    border: 1px solid #D2D7DB;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 0.3s, opacity 0.3s ease-out, transform 0.3s ease-out;
}
.dropdown-content.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.tabs {
    display: flex;
    border-bottom: 1px solid #D2D7DB;
}
.tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    font-family: "Lato", serif;
    color: #000;
    background: #F6F7FB;
    transition: background 0.2s;
}
.tab:hover {
    background: #edeef1;
}
.tab.active {
    background:#edeef1 ;
}
.search-bar {
    padding: 10px;
    background: #F6F7FB;

    border-bottom: 1px solid #D2D7DB;
}
.search-bar input {
    width: 273px;
    height: 34px;
    line-height: 34px;
    background: #edeef1;
    border-radius: 4px;
    padding: 0 10px;
    font-weight: 500;
    color: #000;
    font-family: "Lato", serif;
    border: none;
}
.search-bar input:focus {
    outline: none;
}
.list {
    max-height: 200px;
    overflow-y: auto;
}
.list div {
    padding: 10px;
    cursor: pointer;
    color: #000;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    font-family: "Lato", serif;
    font-weight: 600;
    font-size: 14px;
}
.list div:hover {
    background-color: #edeef1;
}
.default-badge {
    background: #edeef1;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
    font-family: "Lato", serif;
    font-weight: 500;
}
.view-all {
    text-align: center;
    padding: 10px;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    font-size: 12px;
    font-family: "Lato", serif;
}
.view-all:hover {
    background: #edeef1;
}
.checkmark {
            visibility: hidden;
            font-weight: bold;
            margin-right: 8px;
        }
        .selected .checkmark {
            visibility: visible;
        }