/* Стили для модального окна Клиента */
.geo_window {
    display: none;
    position: fixed;
    top: 100px;
    width: 100%;
    height: calc(100% - 100px);
    background: white;
    z-index: 1000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}


/* Стили для модального окна Клиента */
.geo_window_master {
    display: none;
    position: fixed;
    top: 100px;
    width: 100%;
    height: calc(100% - 100px);
    background: white;
    z-index: 1200;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}


.coords_container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#geo_button {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: green;
    font-weight: bold;
    cursor: pointer;
}


#clientAddress {
    width: 100%;
    height: 30px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: rgb(232, 255, 214);
}

#clientCoordinates {
    width: 100%;
    height: 30px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: rgb(232, 255, 214);
}

.geo_controls {
    width: 100%;
}

input::placeholder {
    color: #ff0000; /* Красный цвет */
    opacity: 1; /* Для совместимости с некоторыми браузерами */
}


#map {
    flex: 1 1 auto;
    height: 100%;
    width: 100%;
}

.coords {font-family: Arial, sans-serif; }