.search-wrapper {
    display: flex;
    justify-content: center;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 999px;
    /* pill shape */
    padding: 8px 10px;
    max-width: 500px;
    width: 100%;
    background: #fff;
}

.search-box .fa-search {
    margin: 0px 8px;
    font-size: 14px;
    color: #777;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
}

.search-box button {
    border: none;
    outline: none;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    background: var(--primary-color);
    color: #fff;
    white-space: nowrap;
}

.search-box button:hover {
    opacity: 0.9;
}

.sources-layout {
    padding: 1.5rem;
    padding-bottom: 10px;
}

.sources-ctn {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.sources-item {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 10px;
    cursor: pointer;
}

.sources-item.selected {
    background-color: var(--primary-color);
    color: #fff;
}

.table-ctn {
    width: 100%;
    transition: width 0.4s ease;
    padding-top: 30px;
}

.table-ctn.half-width {
    width: 50%;
}


/* For Chrome, Edge, Brave */
::-webkit-scrollbar {
    width: 6px;
    /* scrollbar width */
    height: 6px;
    /* horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}


.active-row {
    background-color: var(--light-primary-color) !important;
    color: var(--primary-color);
}

.wk-modal-header {
    background: var(--light-primary-color);
    padding: 1rem;
}


.upload-box.drag-over {
    border: 2px dashed var(--primary-color) !important;
    background: var(--light-primary-color);
}

.upload-box {
    /* width: 350px; */
    height: 160px;
    border: 1px solid #d9dee3;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-direction: column;
    text-align: center;
    transition: 0.2s;
    position: relative;
    padding: 10px;
}

.upload-text {
    font-size: 18px;
    color: #566a7f;
}

.file-preview {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.file-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.file-name {
    max-width: 260px;
    font-size: 15px;
    font-weight: bold;
    color: #2f4d76;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}

.remove-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    /* background: #ff4d4d;
        color: white; */
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    display: none;
    /* hidden by default */
}


#side-layout-container {
    padding-left: 0;
    padding-right: 0;
}