/* 打卡框 */
.spirit-checkin-box {
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
    max-width: 500px;
    margin-bottom: 20px;
}
.spirit-checkin-form textarea {
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
}
.spirit-btn {
    background: #6c5ce7;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}
.spirit-btn:hover { background: #5b4cc4; }
.spirit-success-msg {
    color: #27ae60;
    font-weight: bold;
    text-align: center;
}

/* 日历 */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 10px;
}
.calendar-grid .day {
    padding: 10px;
    text-align: center;
    background: #eee;
    border-radius: 4px;
}
.calendar-grid .day.checked {
    background: #2ecc71;
    color: white;
}

/* 排行榜 */
.spirit-leaderboard ul {
    list-style: none;
    padding: 0;
}
.spirit-leaderboard li {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.spirit-leaderboard .rank { font-weight: bold; color: #888; width: 30px; }
.spirit-leaderboard .streak { color: #e67e22; }