.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 99999999;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8fafc;
    transform: translateX(5px);
}

.result-flag {
    width: 48px;
    height: 36px;
    margin-right: 16px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #f1f5f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.result-info {
    flex: 1;
}

.result-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1em;
    display: block;
}

.no-results {
    padding: 24px;
    text-align: center;
    color: #64748b;
    font-weight: 500;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .search-result-item {
        padding: 12px;
    }

    .result-flag {
        width: 40px;
        height: 30px;
        margin-right: 12px;
    }

    .result-name {
        font-size: 0.95em;
    }

    .result-details {
        font-size: 0.85em;
        flex-wrap: wrap;
        gap: 8px;
    }
}
