/* ============================================================
   kepu.css - 科普地图专用样式
   适用页面：kepu_lj.php 等科普地图页面
   ============================================================ */

/* ===== 科普地图UI样式 ===== */
#noScienceRecordMsg {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    background: #f0fdf4;
    border-radius: 12px;
    border: 2px dashed #10b981;
    margin: 10px 0;
}
#noScienceRecordMsg i {
    font-size: 48px;
    color: #10b981;
    margin-bottom: 12px;
}
#noScienceRecordMsg h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #065f46;
}
#noScienceRecordMsg p {
    color: #6b7280;
    font-size: 14px;
    max-width: 300px;
    margin-bottom: 16px;
}

#startScienceBtn {
    padding: 12px 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#startScienceBtn i {
    margin-right: 8px;
    position: relative;
    top: 5px;
}
#startScienceBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.5);
}
#startScienceBtn:active {
    transform: translateY(0);
}

#scienceCompleteMsg {
    display: none;
    padding: 16px;
    text-align: center;
    background: #d1fae5;
    border-radius: 8px;
    margin: 10px 0;
    border: 1px solid #10b981;
}
#scienceCompleteMsg i {
    font-size: 32px;
    color: #f59e0b;
}
#scienceCompleteMsg p {
    font-weight: bold;
    color: #065f46;
    margin-top: 4px;
    font-size: 16px;
}

#scienceProgressDisplay {
    display: none;
    padding: 8px 16px;
    background: #f0fdf4;
    border-radius: 8px;
    margin: 8px 0;
    font-size: 14px;
    color: #065f46;
    border: 1px solid #d1fae5;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
#scienceProgressDisplay span {
    display: inline-block;
}
#scienceProgressDisplay strong {
    font-weight: 700;
}
.science-score-badge {
    background: #10b981;
    color: white;
    padding: 2px 10px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
}

#continueScienceBtnContainer {
    display: none;
    padding: 16px 20px;
    text-align: center;
    background: #dbeafe;
    border-radius: 10px;
    margin: 10px 0;
    border: 1px solid #3b82f6;
}
#continueScienceBtnContainer p {
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 4px;
    font-size: 15px;
}
#continueScienceBtnContainer .sub-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
    font-weight: normal;
}
#continueScienceBtn {
    padding: 10px 36px;
    background: #28a745 !important;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3) !important;
    transition: all 0.2s ease;
}
#continueScienceBtn:hover {
    background: #218838 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.4) !important;
}
#continueScienceBtn:active {
    transform: translateY(0);
}
#continueScienceBtn i {
    margin-right: 8px;
}