.plan-board {
    margin-top: 10px;
    border: 2px solid #ff8b2a;
    background: #fff;
    overflow: hidden;
}

.plan-board.is-home {
    margin-top: 0;
}

.plan-board-switch {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 0;
    padding-top: 0;
    background: #0e0e0e;
}

.plan-board-tab {
    display: block;
    padding: 10px 0 9px;
    border: 0;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

.plan-board-tab[href] {
    text-decoration: none;
}

.plan-board-tab.is-active {
    background: #ff6830;
    color: #fff;
}

.plan-board-header {
    position: relative;
    display: block;
    align-items: center;
    padding: 2px;
    border-bottom: 0;
    background: #fff;
}

.plan-board.is-home .plan-board-header {
    padding-left: 2px;
    padding-right: 2px;
}

.plan-board-title {
    min-width: 0;
    padding: 15px 6px 14px;
    border: 2px solid #ffc07a;
    outline: 1px solid #ff8b2a;
    background: #ff8d2e;
    color: #333;
    font-family: "KaiTi", "STKaiti", "KaiTi_GB2312", serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 2px;
    text-shadow: none;
}

.plan-board-title strong {
    color: #4cff3f;
    font-size: 20px;
}

.plan-board-title em {
    color: #fff;
    font-style: normal;
}

.plan-board-tag {
    display: none;
}

@media (max-width: 390px) {
    .plan-board-title {
        font-size: 20px;
    }
}

.plan-board-body {
    background:
        radial-gradient(circle at 87% 16%, rgba(50, 130, 255, 0.42) 0, rgba(50, 130, 255, 0) 20%),
        radial-gradient(circle at 78% 88%, rgba(0, 99, 255, 0.38) 0, rgba(0, 99, 255, 0) 18%),
        radial-gradient(circle at 58% 62%, rgba(92, 163, 255, 0.22) 0, rgba(92, 163, 255, 0) 14%),
        linear-gradient(180deg, #060910 0%, #06070c 100%);
}

.plan-board.is-home .plan-board-body {
    border-left: 1px solid #0d1524;
    border-right: 1px solid #0d1524;
}

.plan-board-empty {
    padding: 18px 10px;
    color: #ffe45b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.plan-row {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 5px 10px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.plan-board.is-home .plan-row {
    padding-left: 8px;
    padding-right: 8px;
}

.plan-row:first-child {
    border-top: 0;
}

.plan-row-main {
    flex: 1;
    min-width: 0;
    color: #ff2727;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    word-break: break-all;
}

.plan-row-issue,
.plan-row-label {
    color: #4cff3f;
    font-size: 15px;
    font-weight: 900;
}

.plan-row-value {
    color: #ff2b2b;
    font-size: 15px;
    font-weight: 900;
}

.plan-hit-mark {
    color: #ffe84a;
    font-weight: 900;
}

.plan-row-status {
    flex: none;
    min-width: 22px;
    padding: 0;
    background: transparent;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.plan-row-status.is-hit {
    color: #18ff72;
}

.plan-row-status.is-miss {
    color: #ff3c3c;
}

.plan-row-status.is-pending {
    color: #ffd53a;
}
