/* landmark_selector.css - 地标选择器样式 */
.landmark-option-btn {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 5px 0;
    width: 100%;
}

.landmark-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 142, 251, 0.3);
}

.landmark-option-btn i {
    font-size: 16px;
}

.landmark-item:hover {
    background-color: #f8f9fa;
}

/* 地标选择按钮样式 */
.landmark-select-btn {
    background: #6e8efb;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 42px;
    transition: background 0.3s;
}

.landmark-select-btn:hover {
    background: #5a7dfa;
}

.landmark-select-btn i {
    font-size: 18px;
}