.plan-board {
    margin-top: 10px;
    border-top: 2px solid #000;
    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 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    background: #06070b;
}

.plan-board.is-home .plan-board-header {
    padding-left: 8px;
    padding-right: 8px;
}

.plan-board-title {
    min-width: 0;
    color: #f8f24a;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.12);
}

.plan-board-title strong {
    color: #4cff3f;
    font-size: 20px;
}

.plan-board-title em {
    color: #fff;
    font-style: normal;
}

.plan-board-tag {
    flex: none;
    padding: 3px 9px;
    border: 1px solid #ffe45b;
    border-radius: 999px;
    color: #ffe45b;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.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-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;
}
