html,
body {
    height: 100%;
    margin: 0;
}

body {
    background: #ffffff;
}

#map {
    height: 100%;
    width: 100%;
    min-height: 100vh;
}

#location-status {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.875rem;
    max-width: calc(100vw - 24px);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: none;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.5);
}

    .modal-overlay.is-minimized {
        background: transparent;
        pointer-events: none;
        backdrop-filter: blur(0px);
    }

.top-info-message,
company-modal,
.footer {
    pointer-events: auto;
}

.modal-overlay.is-open {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer {
    position: absolute;
    bottom: 0;
    background-color: var(--footer-background-color);
    width: 100%;
    height: var(--footer-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 100px;
    height: var(--footer-logo-height);
    object-fit: contain;
}

.top-info {
    min-height: var(--top-info-padding);
    width: 98%;
    display: flex;
    align-items: center;
}

.top-info-message {
    background-color: #fff;
    border-radius: 99px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

    .top-info-message p {
        margin: 0;
        font-size: 0.75rem;
    }

.top-info-message-icon {
    width: 12px;
    height: 12px;
}

.top-button {
    background-color: #fff;
    border-radius: 99px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: auto;
    font-size: 0.75rem;
    border: none;
}

    .top-button:hover {
        cursor: pointer;
    }

.top-button-icon {
    width: 12px;
    height: 12px;
    transform: rotate(90deg);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
}

#content {
    width: 100%;
    pointer-events: auto;
}

@media (min-width: 1024px) {
    .content {
        align-items: flex-start;
        padding-left: var(--padding-value);
        box-sizing: border-box;
    }

    #content {
        width: var(--company-modal-width);
    }
}

@media (max-width: 1024px) {
  /*  #content {
        bottom: 0;
        position: absolute;
        z-index: 9;
    }*/
}

@media (max-width: 800px) {
    #map {
        max-height: 70vh;
    }
}
