#wooreer-demo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 16px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 20px;
}

#wooreer-demo-bar:not(.wooreer-demo-store-location-set) {
    display: none;
}

#wooreer-demo-bar-text {
    margin: 8px 0 0 0;
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

#wooreer-demo-bar-customize-btn {
    padding: 8px 20px;
    background: #4285f4;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#wooreer-demo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.35);
    justify-content: center;
    align-items: center;
}

#wooreer-demo-modal:not(.wooreer-demo-store-location-set) {
    display: flex;
}

#wooreer-demo-modal-inner {
    background: #fff;
    padding: 30px 20px 10px 20px;
    border-radius: 8px;
    width: 90vw;
    max-width: 440px;
    position: relative;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.30);
}

#wooreer-demo-modal-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: normal;
    align-content: normal;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
    margin-bottom: 16px;
}

#wooreer-demo-modal-title {
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    font-size: 1.4em;
    line-height: 1;
    padding-top: 4px;
}

#wooreer-demo-modal-close {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 1;
    background-color: transparent !important;
    font-size: 2em;
    line-height: 1;
    padding: 0;
}

#wooreer-demo-modal:not(.wooreer-demo-store-location-set) #wooreer-demo-modal-close {
    display: none;
}

#wooreer-demo-search-wrapper {
    position: relative;
}

#wooreer-demo-search-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: block;
}

#wooreer-demo-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid #ccc;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

#wooreer-demo-map {
    height: 300px;
    width: 100%;
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
}

#wooreer-demo-map-selected-address {
    font-size: 13px;
    color: #555;
    margin: 0;
    min-height: 20px;
}

#wooreer-demo-modal-footer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: normal;
    align-content: normal;
    margin-bottom: 10px;
}

#wooreer-demo-map-selected-address {
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    border: 1px solid #ccc;
    border-right: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    padding: 4px 8px;
}

#wooreer-demo-set-location-btn {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 1;
    border: 1px solid #ccc;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    background: #4285f4;
    color: #fff;
}

#wooreer-demo-modal-footer:not(.wooreer-demo-store-location-found) {
    display: none;
}