/* ======================================================
   pages/user_add.css — 摩旅地点添加页专属样式
   ====================================================== */

body { padding-top: 0 !important; }
.map-type-toggle { top: 16px !important; }

/* ============ 分组容器 ============ */
.type-group {
    margin-bottom: 12px;
}
.type-group:last-child {
    margin-bottom: 0;
}
.type-group-title {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    padding-left: 4px;
}

/* ============ 地点类型选择器（4 列网格） ============ */
.location-type-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 4px;
}
.location-type-btn {
    padding: 10px 4px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    font-size: 11px;
}
.location-type-btn:hover { border-color: #6c5ce7; }
.location-type-btn.active { border-color: #6c5ce7; background: #f3f0ff; }
.location-type-btn .location-type-icon { font-size: 22px; display: block; margin-bottom: 4px; }
.location-type-btn .location-type-label { font-weight: 500; color: #333; display: block; line-height: 1.2; }
.location-type-btn.active .location-type-label { color: #6c5ce7; }

/* ======================================================
   响应式 — 平板 (768px)
   ====================================================== */
@media (max-width: 768px) {
    .location-type-selector {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    .location-type-btn {
        padding: 8px 3px;
        font-size: 10px;
        border-radius: 8px;
    }
    .location-type-btn .location-type-icon { font-size: 18px; margin-bottom: 2px; }
    .location-type-btn .location-type-label { font-size: 9px; }
}

/* ======================================================
   响应式 — 手机 (480px)
   ====================================================== */
@media (max-width: 480px) {
    .location-type-selector {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        margin-bottom: 2px;
    }
    .location-type-btn {
        padding: 6px 2px;
        font-size: 9px;
        border-radius: 6px;
    }
    .location-type-btn .location-type-icon { font-size: 16px; margin-bottom: 2px; }
    .location-type-btn .location-type-label { font-size: 8px; line-height: 1.1; }
}
