/* ── Work Map 全局样式 ── */

/* 地图全屏 */
#map {
    z-index: 1;
}

/* 集群图标 */
.custom-cluster {
    background: transparent !important;
    border: none !important;
}
.cluster-icon {
    background: #E67E22;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.cluster-small {
    width: 36px;
    height: 36px;
    font-size: 13px;
}
.cluster-medium {
    width: 44px;
    height: 44px;
    font-size: 15px;
    background: #D35400;
}
.cluster-large {
    width: 52px;
    height: 52px;
    font-size: 17px;
    background: #A04000;
}

/* Popup 样式 */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
}
.leaflet-popup-content {
    margin: 8px;
    line-height: 1.4;
}
.leaflet-container {
    font-family: inherit;
}

/* 打卡按钮禁用 */
#btn-checkin.cursor-not-allowed {
    opacity: 0.6;
}
