/* 页面布局样式 */

/* 顶部导航栏 */
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #005ce6;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
}

.top-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 搜索框样式 */
.search-container {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid black;
    border-radius: 4px;
    padding: 5px 10px;
    position: relative;
}

.search-input {
    border: none;
    background: transparent;
    color: rgb(150, 150, 150);
    outline: none;
    width: 250px;
    font-size: 14px;
}

.search-input::placeholder {
    color: rgb(150, 150, 150);
}

.search-input:focus {
    background: rgb(240, 240, 260);
}

.search-button {
    background: rgb(240, 240, 240);
    border: 2px solid black;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 5px;
    font-size: 14px;
}

.search-button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.search-clear-btn {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid black;
    color: #777777;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 3px;
    font-size: 12px;
}

.search-clear-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.search-status {
    display: none;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
}

/* 按钮样式 */
.right-button {
    padding: 5px 15px;
    background-color: rgb(240, 240, 240);
    color: #000000;
    border: 2px solid black;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.right-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* 地图容器 */
#mapFrame {
    width: 95%;
    height: 80%;
    margin: 5px;
    border: 2px solid #000;
    border-radius: 10px;
    position: relative;
}

#container {
    width: 100%;
    height: 100%;
}

#loading {
    position: absolute;
    top: 80px;
    left: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 1000;
}

/* 底部按钮区域 */
.bottom-actions {
    width: 95%;
    height: 400px;
    margin: 10px;
    border: 0px solid #000;
}

.action-button {
    margin-bottom: 5px;
    padding: 14px 28px;
    font-size: 18px;
    border-radius: 10px;
    background-color: rgb(240, 240, 240);
    color: #000000;
    border: 2px solid #000000;
    cursor: pointer;
    width: 100%;
    max-width: 150px;
}

.action-button:hover {
    background-color: #4b7ed1;
}

