.search-item-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme-overlay-dense);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5%;
}

.search-item-popup {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px var(--theme-shadow-modal);
    z-index: 9999;
}

.search-item-popup input[type="search"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.search-item-popup table {
    width: 100%;
    border-collapse: collapse;
}

.search-item-popup tbody tr:hover {
    background-color: var(--neutral-25);
}

.search-item-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--neutral-600);
    padding: 0;
    width: 30px;
    height: 30px;
}

.search-item-popup .close-btn:hover {
    color: var(--theme-gray-800);
}
