.search-results {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.result-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.result-image {
    width: 50px;        /* Adjust width as needed */
    height: 70px;       /* Adjust height to control the visible area */
    object-fit: cover;  /* Ensures the image fills the area, cropping if necessary */
    object-position: 50% 20%; /* Adjusts the position to focus on a specific part of the image */
    border-radius: 4px;
}


.result-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.result-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.claim-button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}
