.dispensary-banner {
    background: linear-gradient(to right, #4c8c2b, #74b72e);
    color: #ffffff;
    padding: 3rem 1.5rem 2.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: popFadeIn 0.4s ease-out;
}

.banner-title {
    font-family: 'Chivo', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin: 0;
}

.banner-subtext {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.75rem;
    opacity: 0.85;
}

.content-wrapper {
    font-family: Arial, sans-serif;
    background-color: #74b72e;
    max-width: 900px;
    margin: 1.5rem auto;
    padding: 2rem;
}

.search-bar-group {
    display: flex;
    gap: 0.5rem;
}

.search-bar-group input {
    flex: 1;
}

.search-bar-group input,
.search-bar-group button {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-bar-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-bar-group input {
    flex: 1;
}

.search-bar-wrapper {
    box-sizing: border-box;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 1rem;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    animation: popFadeIn 0.55s ease-out;
    position: relative;
}

.search-bar-wrapper:focus-within {
    box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.3);
}

.search-bar-group {
    display: flex;
    gap: 10px;
    margin: 1rem 0;
}

#loading-container {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(34, 34, 34, 0.9);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

#autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none; /* JS will toggle this */
}

#dispensary-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem auto 0 auto;
    max-width: 900px;
    width: 100%;
}

#manual-address {
    flex: 1;
    min-width: 0;
    padding: 0.5rem;
    font-size: 14px;
}

.search-button,
.selector {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    background-color: #388e3c;
    color: white;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.search-button:hover,
.selector:hover {
    background-color: #2e7d32;
}

.selector {
    width: 100%;
    padding: 8px 2.5rem 8px 1rem;
    font-size: 14px;
    border-radius: 5px;
    background-color: #388e3c;
    color: white;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100px;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='white' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.85;
}



