.google-places-container {
    position: relative;
}

.google-places-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.google-places-input {
    padding-right: 2.5rem !important;
}

.google-places-input-spinner {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    border: 0.125rem solid rgba(110, 61, 247, 0.3);
    border-left: 0.125rem solid var(--purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
    z-index: 10;
}

.google-places-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 0.125rem solid var(--purple);
    border-radius: 0.375rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.15);
    max-height: 15.625rem;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    margin-top: 0.125rem;
}

.google-places-suggestion {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 0.0625rem solid #e9ecef;
    transition: background-color 0.2s ease;
    border-left: 0.1875rem solid transparent;
}

.google-places-suggestion:last-child {
    border-bottom: none;
}

.google-places-suggestion:hover,
.google-places-suggestion.active {
    background-color: #f8f9fa;
    border-left-color: var(--purple);
}

.google-places-suggestion .main-text {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.125rem;
    font-size: 0.875rem;
}

.google-places-suggestion .secondary-text {
    font-size: 0.8125rem;
    color: #666;
}

.google-places-suggestions::-webkit-scrollbar {
    width: 0.375rem;
}

.google-places-suggestions::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0.1875rem;
}

.google-places-suggestions::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 0.1875rem;
}

.google-places-suggestions::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.no-results, .loading-suggestion {
    padding: 0.75rem 1rem;
    color: var(--purple);
    text-align: center;
    font-size: 0.875rem;
}

.loading-suggestion i {
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

