body {
    font-family: 'Roboto', sans-serif;
}

#map {
    font-family: 'Roboto', sans-serif;
    position: absolute;
    height: 85%; 
    width: 99.15%;
}

#header {
    background-color: #3498db;
    color: white;
    padding: 1px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

#header img{
    width: 85px;
    height: 85px;
    margin-right: 10px;
}

#text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#text-container h1 {
    margin-bottom: -14px;
}

#update-date {
    margin-bottom: auto;
    background-color: #3498db;
    color: white;
    font-size: 14px;
}

.search-input {
    width: 150px; /* 초기 너비 설정 */
}

.search-tip {
    white-space: nowrap;
    min-width: 300px;
}

.search-tip b {
    color: #fff;
    clear: right;
    float: left;
    padding: 0 4px;
    margin-right: 4px;
}

.leaflet-control-layers-list {
    font-size: 16px;
}

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
font-family: "Roboto", sans-serif;
font-weight: 300;
font-style: normal;
}

.roboto-regular {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}

.roboto-medium {
font-family: "Roboto", sans-serif;
font-weight: 500;
font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}  

.custom-control {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}
.leaflet-button {
    display: inline-block;
    background: #f7f7f7 !important; /* 기본 흰색 배경 */
    border: 1px solid #ddd !important; /* 회색 테두리 */
    color: #333 !important; /* 텍스트 색상 */
    text-align: center;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px !important; /* 둥근 모서리 */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    font-size: 13px !important;
}
.leaflet-button:hover {
    background: #e6e6e6 !important; /* hover 시 약간 어두운 배경 */
    color: #000 !important;
}
.leaflet-button:active {
    background: #ccc !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}
.input-container {
    margin-top: 10px;
    display: none;
}
.input-container input {
    width: calc(100% - 12px);
    padding: 4px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px){
    #header img{
    width: 10%;
    height: 10%;
    }

    #text-container {
    font-size: 70%;
    }

    #text-container h1 {
    margin-bottom: auto;
    }

    #update-date {
    margin-bottom: auto;
    font-size: 70%;
    }

    .leaflet-control-layers-list {
        font-size: 11px;
    }
}