.search-container {
    width: 100%;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #ccc;
    border-radius: 50%;
    border-top: 3px solid #333;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.search-results-sprint {
    list-style: none;
    margin-top: 5px;
    padding: 0;
    position: absolute;
    z-index: 1050;
    width: 85%;
    max-height: 200px;
    overflow-y: auto;
    border: none;
    background-color: #F9FAFB;
    background: white;
    display: none;
}

.search-results-sprint li {
    display: flex;
    justify-content: space-between;
    /* Align content to opposite sides */
    align-items: center;
    padding: 10px;
    background-color: #F9FAFB;
    cursor: pointer;
}

.search-results-sprint li:hover {
    background-color: #f0f0f0;
}

/* The same CSS from before */
.search-results-sprint li.no-results {
    text-align: center;
    color: #666;
    padding: 10px;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.search-label-span {
    padding: 5px 10px;
    border-radius: 4px;
    color: #333;
    font-size: 12px;
}