.checklist-admin-page,
.checklist-blocking-page {
    padding: 24px;
}

.checklist-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.checklist-page-head h1 {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 700;
}

.checklist-page-head p {
    margin: 0;
    color: #6b7280;
    max-width: 720px;
}

.checklist-task-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checklist-summary-grid {
    margin-bottom: 16px;
}

.checklist-summary-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 18px 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.checklist-summary-card span {
    display: block;
    color: #6b7280;
    margin-bottom: 6px;
}

.checklist-summary-card strong {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.checklist-summary-card.is-success strong {
    color: #0f766e;
}

.checklist-summary-card.is-warning strong {
    color: #b45309;
}

.checklist-pending-users {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist-pending-users li {
    padding: 10px 0;
    border-bottom: 1px solid #eef2f7;
}

.checklist-pending-users strong,
.checklist-pending-users span {
    display: block;
}

.checklist-pending-users span {
    color: #6b7280;
    font-size: 12px;
}

.checklist-blocking-page {
    position: relative;
    min-height: calc(100vh - 110px);
}

.checklist-blocking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 30;
}

.checklist-blocking-shell {
    position: relative;
    z-index: 31;
    max-width: 1080px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.24);
}

.checklist-blocking-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.checklist-kicker {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.checklist-blocking-header h1 {
    margin: 0 0 8px;
    font-size: 34px;
    font-weight: 800;
    color: #111827;
}

.checklist-blocking-header p {
    margin: 0;
    color: #4b5563;
    max-width: 720px;
}

.checklist-progress-card {
    min-width: 260px;
    background: #0f172a;
    color: #fff;
    padding: 18px 20px;
    border-radius: 18px;
}

.checklist-progress-card strong,
.checklist-progress-card span {
    display: block;
}

.checklist-progress-card span {
    color: rgba(255, 255, 255, 0.76);
    margin-top: 8px;
}

.checklist-log-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 22px;
    margin-bottom: 18px;
}

.checklist-log-card header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.checklist-log-card h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
}

.checklist-log-card p {
    margin: 0;
    color: #6b7280;
}

.checklist-log-progress {
    text-align: right;
}

.checklist-log-progress span {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #111827;
}

.checklist-log-progress small {
    color: #6b7280;
}

.checklist-task-list {
    display: grid;
    gap: 14px;
}

.checklist-task-item {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.checklist-task-item.is-completed {
    border-color: #86efac;
    background: #f0fdf4;
}

.checklist-task-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.checklist-task-main input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
}

.checklist-task-main strong {
    display: block;
    margin-bottom: 4px;
    color: #111827;
}

.checklist-task-main p {
    margin: 0;
    color: #6b7280;
}

.checklist-task-meta textarea {
    margin-top: 10px;
}

.checklist-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px;
}

@media (max-width: 991px) {
    .checklist-blocking-header,
    .checklist-page-head,
    .checklist-log-card header {
        flex-direction: column;
    }

    .checklist-progress-card {
        min-width: 0;
    }
}
