
#spotlight {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #2d2d2d;
    border: 1px solid #444;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    z-index: 2000;
    border-radius: 10px;
    width: 550px;
}

#spotlight input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    border-radius: 10px;
    outline: none;
    border: none;
    background-color: transparent;
    color: #f1f1f1;
    box-sizing: border-box;
}

#spotlight-suggestions {
    border-top: 1px solid #444;
    margin-top: 5px;
    padding-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    display: none; /* Hidden by default */
}

.suggestion-item {
    padding: 0.6rem 1rem;
    color: #ccc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.suggestion-item:hover,
.suggestion-item.selected {
    background-color: #3c3c3c;
}

.suggestion-item strong {
    color: #f1f1f1;
}

.suggestion-item span {
    font-size: 0.9em;
    color: #888;
}
