* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    background: #f4f6f9;
    color: #222;
}


/* LOGIN */

.login-body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 18px;
    background:
        linear-gradient(135deg, rgba(17,61,96,0.84), rgba(49,106,139,0.68)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='1000' viewBox='0 0 1600 1000'%3E%3Crect width='1600' height='1000' fill='%23edf4f8'/%3E%3Cg opacity='0.42'%3E%3Cpath d='M0 710 C260 630 395 775 650 690 C925 598 1010 440 1260 500 C1430 540 1510 610 1600 565 L1600 1000 L0 1000 Z' fill='%23c8dce7'/%3E%3Cpath d='M0 785 C245 720 380 835 640 760 C890 688 1030 560 1285 622 C1440 660 1520 720 1600 688 L1600 1000 L0 1000 Z' fill='%23dce9ef'/%3E%3C/g%3E%3Cg opacity='0.16' fill='none' stroke='%231b4f72' stroke-width='2'%3E%3Cpath d='M165 210 H505 M165 270 H410 M165 330 H470'/%3E%3Cpath d='M1050 190 H1370 M1050 250 H1295 M1050 310 H1340'/%3E%3Ccircle cx='1300' cy='745' r='78'/%3E%3Ccircle cx='1300' cy='745' r='44'/%3E%3C/g%3E%3Cg opacity='0.2'%3E%3Crect x='925' y='365' width='270' height='150' rx='18' fill='%23ffffff'/%3E%3Crect x='965' y='405' width='178' height='12' rx='6' fill='%231b4f72'/%3E%3Crect x='965' y='438' width='132' height='10' rx='5' fill='%237fa7bb'/%3E%3Crect x='965' y='468' width='190' height='10' rx='5' fill='%237fa7bb'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.login-shell {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-container {
    width: min(100%, 430px);
    background: rgba(255,255,255,0.96);
    padding: 34px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.68);
    box-shadow:
        0 22px 55px rgba(12,30,47,0.25);
    backdrop-filter: blur(8px);
}

.login-brand {
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e8edf2;
}

.login-logo {
    font-size: 25px;
    font-weight: 800;
    color: #172033;
    line-height: 1.25;
}

.login-logo span {
    color: #4c6ef5;
}

.login-description {
    color: #6d7685;
    margin-top: 6px;
    font-size: 14px;
}

.login-form {
    margin-top: 0;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 7px;
}

input,
textarea {
    width: 100%;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    padding: 13px 14px;
    font-size: 15px;
    outline: none;
    background: #fbfcfe;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

input:focus,
textarea:focus {
    border-color: #1f4e79;
    background: white;
    box-shadow: 0 0 0 3px rgba(31,78,121,0.12);
}

.primary-button {
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 14px;
    background: #1f4e79;
    color: white;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 25px;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 10px 18px rgba(31,78,121,0.18);
}

.primary-button:hover {
    background: #173b5c;
    transform: translateY(-1px);
}

.error-message {
    margin-top: 20px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #b42318;
    background: #fff1f0;
    border: 1px solid #ffd7d3;
    text-align: center;
    font-size: 14px;
}


/* HEADER */

.header {
    height: 68px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 45px;
    border-bottom: 1px solid #e8e8e8;
}

.header-logo {
    font-size: 21px;
    font-weight: 700;
}

.header-logo a {
    color: inherit;
    text-decoration: none;
}

.header-logo a:hover {
    color: #1f4e79;
}

.header-logo span {
    color: #4c6ef5;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #555;
}

.logout {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    color: #344054;
    background: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.logout:hover {
    background: #f1f5f9;
    border-color: #9fb2c8;
    color: #1f4e79;
    box-shadow: 0 6px 14px rgba(31,78,121,0.1);
}

.board-switch-nav {
    background: #ffffff;
    border-bottom: 1px solid #e8edf2;
}

.board-switch-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
}

.board-switch-link {
    flex: 0 0 auto;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    color: #344054;
    background: #f8fafc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.board-switch-link:hover {
    background: #eef4fb;
    border-color: #b8cbe0;
    color: #1f4e79;
}

.board-switch-link.is-active {
    background: #1f4e79;
    border-color: #1f4e79;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(31,78,121,0.16);
}


/* PAGE */

.container {
    max-width: 1100px;
    margin: 45px auto;
    padding: 0 20px;
}

.dashboard-container {
    margin-top: 30px;
}

.dashboard-shell {
    width: 100%;
    min-height: calc(100vh - 68px);
    margin: 0;
    padding: 28px 36px 28px 0;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
}

.side-menu {
    align-self: start;
    min-height: calc(100vh - 124px);
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-left: 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 6px 10px 22px rgba(23,32,51,0.05);
    overflow: hidden;
}

.side-menu-title {
    padding: 22px 26px;
    border-bottom: 1px solid #eef1f5;
    color: #172033;
    font-size: 19px;
    font-weight: 800;
    background: #fbfcfe;
}

.side-menu-list {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-menu-link {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 8px;
    color: #344054;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.side-menu-button {
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.side-menu-link:hover {
    background: #eef4fb;
    color: #1f4e79;
}

.dashboard-main {
    min-width: 0;
}

.board-main-panel {
    min-width: 0;
}

.status-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.status-card {
    min-height: 270px;
    display: block;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(23,32,51,0.05);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.status-card:hover {
    border-color: #b8cbe0;
    box-shadow: 0 10px 24px rgba(31,78,121,0.1);
    transform: translateY(-1px);
}

.status-card h2 {
    margin: 0 0 28px;
    color: #172033;
    font-size: 24px;
    line-height: 1.3;
}

.status-card-title-link {
    color: inherit;
    text-decoration: none;
}

.status-card-title-link:hover h2 {
    color: #1f4e79;
}

.status-list {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.status-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 17px;
    border-bottom: 1px solid #eef1f5;
}

.status-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 17px;
    border-bottom: 1px solid #eef1f5;
    color: inherit;
    text-decoration: none;
}

.status-link-row:hover dt,
.status-link-row:hover dd {
    color: #1f4e79;
}

.status-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.status-link-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.page-subtitle {
    margin-top: 6px;
    color: #667085;
    font-size: 14px;
    font-weight: 800;
}

.status-list dt {
    color: #667085;
    font-size: 15px;
    font-weight: 700;
}

.status-list dd {
    margin: 0;
    color: #1f4e79;
    font-size: 28px;
    font-weight: 900;
    white-space: nowrap;
}

.clickable-table tbody tr.clickable-row {
    cursor: pointer;
    transition: background 0.15s;
}

.clickable-table tbody tr.clickable-row:hover,
.clickable-table tbody tr.clickable-row:focus {
    background: #f4f8fc;
    outline: none;
}

.post-status-line {
    margin: 14px 0 0;
}

.status-toggle-button {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.reply-section {
    margin-top: 28px;
}

.reply-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.reply-section-head h2 {
    margin: 0;
    color: #172033;
    font-size: 22px;
}

.reply-section-head span {
    color: #667085;
    font-size: 14px;
    font-weight: 800;
}

.reply-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reply-item {
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 5px 18px rgba(23,32,51,0.04);
}

.reply-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #667085;
    font-size: 13px;
    margin-bottom: 12px;
}

.reply-meta strong {
    color: #172033;
    font-size: 14px;
}

.reply-content {
    color: #2f3a4a;
    line-height: 1.7;
    white-space: normal;
}

.reply-actions {
    margin-top: 12px;
}

.wide-container {
    max-width: 1280px;
}

.page-title {
    font-size: 27px;
    margin-bottom: 7px;
}

.page-description {
    color: #777;
    margin-bottom: 35px;
}

.board-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.board-panel {
    background: white;
    border: 1px solid #e5eaf0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(23,32,51,0.04);
}

.board-header {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    background: #fbfcfe;
    border-bottom: 1px solid #eef1f5;
}

.board-header h2 {
    margin: 0;
    font-size: 20px;
    color: #172033;
}

.board-header p {
    margin: 6px 0 0;
    color: #6d7685;
    font-size: 14px;
}

.board-toggle {
    flex: 0 0 auto;
    min-width: 78px;
    border: 1px solid #cbd6e2;
    border-radius: 8px;
    padding: 9px 13px;
    background: white;
    color: #1f4e79;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.board-toggle:hover {
    background: #edf4f8;
}

.board-content {
    padding: 22px 24px 24px;
}

.board-panel.is-collapsed .board-content {
    display: none;
}

.board-panel.is-collapsed .board-header {
    border-bottom: 0;
}

.board-cards {
    margin-bottom: 22px;
}

.board-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.board-actions-bottom {
    margin-top: 18px;
    margin-bottom: 0;
    justify-content: flex-end;
}

.board-action,
.table-action,
.mini-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    border-radius: 8px;
    padding: 8px 12px;
    background: #edf4f8;
    color: #1f4e79;
    border: 1px solid #cbd6e2;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.board-action.primary {
    background: #1f4e79;
    border-color: #1f4e79;
    color: white;
}

.board-action:hover,
.table-action:hover,
.mini-action:hover {
    background: #dfeef5;
}

.board-action.is-reply,
.table-action.is-reply,
.mini-action.is-reply {
    background: #e7f1ff;
    border-color: #9ec5fe;
    color: #1f4e79;
}

.board-action.is-reply:hover,
.table-action.is-reply:hover,
.mini-action.is-reply:hover {
    background: #d7e9ff;
}

.board-action.is-view,
.table-action.is-view,
.mini-action.is-view {
    background: #eaf7ef;
    border-color: #a8dfb7;
    color: #2b8a3e;
}

.board-action.is-view:hover,
.table-action.is-view:hover,
.mini-action.is-view:hover {
    background: #d9f0e1;
}

.board-action.primary:hover {
    background: #173b5c;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.board-section {
    border: 1px solid #e7ebf0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.board-section-title {
    padding: 14px 16px;
    background: #f6f8fb;
    border-bottom: 1px solid #e7ebf0;
    font-size: 14px;
    font-weight: 800;
    color: #172033;
}

.mini-list {
    display: flex;
    flex-direction: column;
}

.mini-row {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 16px;
    border-bottom: 1px solid #eef1f5;
}

.mini-row:last-child {
    border-bottom: 0;
}

.mini-main {
    min-width: 0;
}

.mini-main a {
    display: block;
    color: #172033;
    text-decoration: none;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-main a:hover {
    color: #1f4e79;
}

.mini-main span {
    display: block;
    margin-top: 5px;
    color: #8a94a3;
    font-size: 12px;
}

.empty-state {
    padding: 24px 16px;
    color: #8a94a3;
    text-align: center;
    font-size: 14px;
}

.empty-cell {
    text-align: center;
    color: #8a94a3;
}

.inline-badge,
.inline-badge-left {
    margin-right: 8px;
    vertical-align: middle;
}

.dashboard-footer-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 22px;
    padding-bottom: 24px;
}

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


/* CARDS */

.cards {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: #222;
    box-shadow:
        0 3px 12px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 7px 20px rgba(0,0,0,0.07);
}

.card-title {
    color: #777;
    font-size: 14px;
}

.card-number {
    font-size: 34px;
    font-weight: 700;
    margin-top: 10px;
}

.card-write {
    background: #4c6ef5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}


/* TABLE */

.panel {
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
}

.panel-title {
    padding: 20px 25px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

th {
    font-size: 13px;
    color: #777;
    background: #fafafa;
}

td a {
    color: #222;
    text-decoration: none;
}

td a:hover {
    color: #4c6ef5;
}

.badge {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pending {
    background: #fff3bf;
    color: #e67700;
}

.unanswered {
    background: #fff3bf;
    color: #e67700;
}

.answered-waiting {
    background: #d3f9d8;
    color: #2b8a3e;
}

.followup {
    background: #ffe3e3;
    color: #c92a2a;
}

.answered {
    background: #d3f9d8;
    color: #2b8a3e;
}

.in-progress {
    background: #dbeafe;
    color: #175cd3;
}

.inline-edit-form {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #eef1f5;
}

.inline-edit-form label {
    display: block;
    margin: 12px 0 7px;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
}

.inline-edit-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.is-hidden {
    display: none !important;
}


/* FORM */

.form-panel {
    background: white;
    max-width: 800px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

textarea {
    resize: vertical;
    min-height: 200px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #666;
}

.main-back {
    padding: 9px 13px;
    border-radius: 8px;
    background: #edf4f8;
    color: #1f4e79;
    font-weight: 800;
}

.board-back-button {
    margin-left: 8px;
    padding: 9px 13px;
    border: 1px solid #cad6e3;
    border-radius: 8px;
    background: #ffffff;
    color: #344054;
    font-weight: 800;
    box-shadow: 0 1px 2px rgba(16,24,40,0.04);
}

.board-back-button:hover {
    border-color: #9db3c9;
    background: #f7fafc;
    color: #1f4e79;
}


/* POST */

.post-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.post-title {
    font-size: 24px;
    font-weight: 700;
}

.post-meta {
    color: #999;
    margin-top: 10px;
    margin-bottom: 30px;
}

.post-content {
    white-space: pre-wrap;
    line-height: 1.7;
}

.answer-box {
    background: #f8f9ff;
    border-left: 4px solid #4c6ef5;
}

.post-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.post-actions form {
    margin: 0;
}

.danger-button {
    min-height: 36px;
    border: 1px solid #f1aeb5;
    border-radius: 8px;
    padding: 8px 12px;
    background: #fff1f2;
    color: #b42318;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.danger-button:hover {
    background: #ffe4e6;
}

.notification-consent {
    border: 0;
    border-radius: 8px;
    padding: 9px 12px;
    background: #1f4e79;
    color: white;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.notification-test-button {
    border: 1px solid #cad6e3;
    border-radius: 8px;
    padding: 8px 11px;
    background: #ffffff;
    color: #1f4e79;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.notification-test-button:hover {
    background: #edf4f8;
}

.notification-disable-button {
    border: 1px solid #f1aeb5;
    border-radius: 8px;
    padding: 8px 11px;
    background: #fff1f2;
    color: #b42318;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.notification-disable-button:hover {
    background: #ffe4e6;
}

.notification-status {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    width: min(360px, calc(100vw - 40px));
    padding: 14px;
    border-radius: 12px;
    background: white;
    color: #222;
    border: 1px solid #d8dee8;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 12px 28px rgba(23,32,51,0.14);
}

.notification-status-title {
    color: #172033;
    font-size: 14px;
    font-weight: 800;
}

.notification-status-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.notification-collapse {
    border: 0;
    background: transparent;
    color: #6d7685;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.notification-collapse:hover {
    color: #1f4e79;
}

.notification-status-text {
    margin-top: 6px;
    color: #586474;
}

.notification-status-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.notification-confirmation {
    display: none;
    margin-top: 12px;
    padding: 12px;
    border-radius: 10px;
    background: #f7fafc;
    border: 1px solid #dbe5ef;
}

.notification-confirmation-question {
    color: #172033;
    font-size: 13px;
    font-weight: 800;
}

.notification-confirmation-actions {
    display: flex;
    gap: 8px;
    margin-top: 9px;
}

.notification-confirm-button {
    border: 1px solid #cad6e3;
    border-radius: 8px;
    padding: 8px 12px;
    background: #ffffff;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.notification-confirm-button.primary {
    border-color: #1f4e79;
    background: #1f4e79;
    color: #ffffff;
}

.notification-help-link {
    color: #1f4e79;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.notification-help-link:hover {
    text-decoration: underline;
}

.notification-compact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd6e2;
    border-radius: 999px;
    padding: 10px 14px;
    background: white;
    color: #1f4e79;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(23,32,51,0.14);
}

.notification-compact:hover {
    background: #edf4f8;
}

.notification-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1001;
    max-width: min(360px, calc(100vw - 40px));
    padding: 15px 18px 15px 46px;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            #fff7c2,
            #ffd43b
        );
    color: #3b2f00;
    border: 1px solid #f08c00;
    font-size: 14px;
    font-weight: 800;
    box-shadow:
        0 12px 26px rgba(240,140,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.75);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s;
}

.help-panel {
    background: white;
    border: 1px solid #e5eaf0;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 5px 18px rgba(23,32,51,0.04);
}

.help-panel h2 {
    margin: 24px 0 8px;
    font-size: 18px;
}

.help-panel h2:first-child {
    margin-top: 0;
}

.help-panel p {
    margin: 0;
    color: #586474;
    line-height: 1.7;
}

.help-steps {
    margin: 12px 0 0;
    padding-left: 22px;
    color: #344054;
    line-height: 1.8;
}

.help-steps li + li {
    margin-top: 6px;
}

.notification-toast::before {
    content: "!";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff922b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    transform: translateY(-50%);
    box-shadow: 0 3px 8px rgba(224,95,0,0.28);
}

.notification-toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width: 700px) {

    .cards {
        grid-template-columns: 1fr;
    }

    .header {
        padding: 0 20px;
    }

    .header-right {
        gap: 10px;
    }

    .dashboard-shell {
        padding: 18px 14px;
        grid-template-columns: 1fr;
    }

    .side-menu {
        min-height: auto;
    }

    .status-card-grid {
        grid-template-columns: 1fr;
    }

    .board-header,
    .page-head-row {
        flex-direction: column;
        align-items: stretch;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }

    .mini-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .mini-action,
    .table-action {
        width: 100%;
    }
}
