:root {
    --navy: #14213d;
    --navy-dark: #0b1326;
    --blue: #1667d9;
    --blue-dark: #1054b5;
    --orange: #f28c28;
    --green: #16884a;
    --yellow: #b87900;
    --red: #c53b3b;
    --text: #263246;
    --muted: #6f7b8e;
    --border: #dfe5ee;
    --background: #f4f7fb;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(20, 33, 61, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--background);
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background:
        radial-gradient(circle at top left, rgba(22, 103, 217, 0.17), transparent 38%),
        linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.login-shell {
    width: min(1050px, 100%);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.login-brand {
    padding: 72px 60px;
    color: var(--white);
    background:
        linear-gradient(rgba(15, 29, 58, 0.93), rgba(15, 29, 58, 0.93)),
        linear-gradient(135deg, var(--blue), var(--navy));
}

.brand-mark {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--orange));
    font-size: 32px;
    font-weight: 800;
}

.brand-mark-small {
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 12px;
    font-size: 22px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.login-brand h1 {
    margin: 0 0 20px;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1;
}

.login-brand > p:not(.eyebrow) {
    max-width: 500px;
    color: #d6def0;
    font-size: 18px;
    line-height: 1.7;
}

.login-feature-list {
    display: grid;
    gap: 14px;
    margin-top: 38px;
}

.login-feature-list span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e8edfa;
}

.login-feature-list span::before {
    content: "✓";
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #79e0a4;
    font-weight: 800;
}

.login-card {
    padding: 72px 60px;
    align-self: center;
}

.login-heading h2 {
    margin: 0 0 10px;
    font-size: 32px;
    color: var(--navy);
}

.login-heading p {
    margin: 0 0 30px;
    color: var(--muted);
}

.login-form {
    display: grid;
    gap: 22px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.form-group input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border);
    border-radius: 11px;
    outline: none;
    background: var(--white);
}

.form-group input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(22, 103, 217, 0.12);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 20px;
    border: 0;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
}

.button-primary {
    color: var(--white);
    background: var(--blue);
}

.button-primary:hover {
    background: var(--blue-dark);
}

.button-full {
    width: 100%;
}

.alert {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 10px;
    line-height: 1.5;
}

.alert-error {
    border: 1px solid #f2c7c7;
    color: #8d2222;
    background: #fff1f1;
}

.login-footer {
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.admin-header {
    position: sticky;
    top: 0;
    z-index: 20;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 8px 24px rgba(20, 33, 61, 0.12);
}

.admin-header-inner {
    width: min(1450px, calc(100% - 40px));
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    text-decoration: none;
}

.admin-brand strong,
.admin-brand small {
    display: block;
}

.admin-brand small {
    margin-top: 2px;
    color: #b9c5dc;
}

.admin-nav {
    display: flex;
    align-self: stretch;
    gap: 4px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #d5dced;
    text-decoration: none;
    border-bottom: 3px solid transparent;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: var(--white);
    border-bottom-color: var(--orange);
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.admin-user a {
    color: #d5dced;
}

.admin-main {
    width: min(1450px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px 0 70px;
}

.page-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.page-heading h1 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 38px;
}

.page-heading p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.stat-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    margin: 15px 0 10px;
    color: var(--navy);
    font-size: 38px;
}

.stat-card small {
    color: var(--muted);
}

.stat-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stat-success {
    border-top: 4px solid var(--green);
}

.stat-warning {
    border-top: 4px solid var(--yellow);
}

.stat-danger {
    border-top: 4px solid var(--red);
}

.panel {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    border-bottom: 1px solid var(--border);
}

.panel-heading h2 {
    margin: 0 0 7px;
    color: var(--navy);
}

.panel-heading p {
    margin: 0;
    color: var(--muted);
}

.empty-state {
    padding: 70px 25px;
    text-align: center;
}

.empty-state-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    color: var(--green);
    background: #e9f8ef;
    font-size: 30px;
    font-weight: 900;
}

.empty-state h3 {
    margin: 0 0 10px;
    color: var(--navy);
}

.empty-state p {
    max-width: 560px;
    margin: 0 auto 24px;
    color: var(--muted);
    line-height: 1.6;
}

.table-wrap {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    color: var(--muted);
    background: #f9fbfd;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.data-table td strong,
.data-table td small {
    display: block;
}

.data-table td small {
    max-width: 460px;
    margin-top: 4px;
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.status-up {
    color: #126b3c;
    background: #e8f7ef;
}

.status-warning {
    color: #855a00;
    background: #fff5d7;
}

.status-down {
    color: #9f2c2c;
    background: #ffeaea;
}

@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-nav {
        display: none;
    }
}

@media (max-width: 800px) {
    .login-page {
        padding: 18px;
    }

    .login-shell {
        grid-template-columns: 1fr;
    }

    .login-brand,
    .login-card {
        padding: 45px 28px;
    }

    .admin-header-inner,
    .admin-main {
        width: min(100% - 24px, 1450px);
    }

    .admin-user span {
        display: none;
    }

    .page-heading {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .page-heading h1 {
        font-size: 32px;
    }

    .admin-brand {
        min-width: 0;
    }

    .admin-brand small {
        display: none;
    }
}

.alert-success {
    border: 1px solid #bfe5ce;
    color: #146638;
    background: #ebf8f0;
}

.button-secondary {
    color: var(--navy);
    border: 1px solid var(--border);
    background: var(--white);
}

.button-secondary:hover {
    border-color: #bcc7d8;
    background: #f5f7fa;
}

.button-small {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 13px;
}

.form-panel {
    padding: 28px;
}

.admin-form {
    display: grid;
    gap: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-group-wide {
    grid-column: 1 / -1;
}

.form-group select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border);
    border-radius: 11px;
    outline: none;
    background: var(--white);
}

.form-group small {
    color: var(--muted);
    line-height: 1.5;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.checkbox-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #f9fbfd;
    cursor: pointer;
}

.checkbox-card input {
    margin-top: 4px;
}

.checkbox-card strong,
.checkbox-card small {
    display: block;
}

.checkbox-card strong {
    margin-bottom: 5px;
    color: var(--navy);
}

.checkbox-card small {
    color: var(--muted);
    line-height: 1.5;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 6px;
}

.table-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-actions form {
    margin: 0;
}

.status-unknown {
    color: #5e6878;
    background: #edf0f4;
}

@media (max-width: 760px) {
    .form-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .form-group-wide {
        grid-column: auto;
    }

    .form-panel {
        padding: 20px;
    }
}

.page-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.page-actions form {
    margin: 0;
}

.site-stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.result-text {
    font-size: 30px !important;
}

.result-up {
    color: var(--green) !important;
}

.result-warning {
    color: var(--yellow) !important;
}

.result-down {
    color: var(--red) !important;
}

.result-unknown {
    color: var(--muted) !important;
}

.stat-date {
    font-size: 21px !important;
    line-height: 1.3;
}

.panel-spacing {
    margin-top: 28px;
}

.empty-state-small {
    padding-top: 45px;
    padding-bottom: 45px;
}

.url-cell {
    display: block;
    max-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .site-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .site-stats-grid {
        grid-template-columns: 1fr;
    }
}

.incident-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.incidents-heading {
    flex-wrap: wrap;
}

.filter-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-links a {
    padding: 8px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.filter-links a:hover,
.filter-links a.active {
    border-color: var(--blue);
    color: var(--white);
    background: var(--blue);
}

@media (max-width: 760px) {
    .incident-stats-grid {
        grid-template-columns: 1fr;
    }

    .filter-links {
        width: 100%;
        overflow-x: auto;
    }
}

.settings-section {
    display: grid;
    gap: 22px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.settings-section:last-of-type {
    border-bottom: 0;
}

.settings-section-heading h2 {
    margin: 0 0 7px;
    color: var(--navy);
}

.settings-section-heading p {
    margin: 0;
    color: var(--muted);
}

.settings-checkbox-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .settings-checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.ssl-detail {
    display: block;
    max-width: 160px;
    margin-top: 7px;
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
    text-overflow: ellipsis;
}

.monitor-chart-wrap {
    width: 100%;
    overflow-x: auto;
    padding-top: 10px;
}

.monitor-chart {
    display: block;
    width: 100%;
    min-width: 320px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.chart-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 18px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.chart-summary span {
    color: #64748b;
    font-size: 0.9rem;
}

.chart-summary strong {
    color: #0f172a;
}

.status-page {
    margin: 0;
    min-height: 100vh;
    background: #f3f6f8;
    color: #17212b;
}

.status-container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.status-header {
    background: #ffffff;
    border-bottom: 1px solid #dfe7ec;
}

.status-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.status-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.status-brand span:last-child {
    display: flex;
    flex-direction: column;
}

.status-brand strong {
    font-size: 1.1rem;
}

.status-brand small {
    color: #64748b;
}

.status-hero {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 42px 0 24px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #dfe7ec;
    border-left-width: 6px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.status-hero h1 {
    margin: 3px 0 8px;
}

.status-hero p:last-child {
    margin: 0;
    color: #64748b;
}

.status-hero-up {
    border-left-color: #16a34a;
}

.status-hero-warning {
    border-left-color: #d97706;
}

.status-hero-down {
    border-left-color: #dc2626;
}

.status-hero-unknown {
    border-left-color: #64748b;
}

.status-overall-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e8f5ed;
    color: #15803d;
    font-size: 1.8rem;
    font-weight: 800;
}

.status-hero-warning .status-overall-icon {
    background: #fff5df;
    color: #b45309;
}

.status-hero-down .status-overall-icon {
    background: #feecec;
    color: #b91c1c;
}

.status-hero-unknown .status-overall-icon {
    background: #edf1f4;
    color: #475569;
}

.status-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.status-summary article {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #dfe7ec;
    border-radius: 12px;
}

.status-summary span {
    display: block;
    margin-bottom: 7px;
    color: #64748b;
    font-size: 0.88rem;
}

.status-summary strong {
    font-size: 1.7rem;
}

.status-services {
    margin-bottom: 45px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #dfe7ec;
    border-radius: 16px;
}

.status-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 20px;
}

.status-section-heading h2 {
    margin: 3px 0 0;
}

.status-section-heading small {
    color: #64748b;
}

.status-service-list {
    display: grid;
    gap: 14px;
}

.status-service-card {
    display: grid;
    grid-template-columns:
        minmax(220px, 1.4fr)
        minmax(150px, 0.7fr)
        minmax(230px, 1fr);
    align-items: center;
    gap: 24px;
    padding: 20px;
    border: 1px solid #dfe7ec;
    border-radius: 12px;
}

.status-service-main {
    display: flex;
    align-items: center;
    gap: 13px;
}

.status-service-main h3 {
    margin: 0 0 4px;
}

.status-service-main a {
    color: #64748b;
    font-size: 0.85rem;
    overflow-wrap: anywhere;
}

.status-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: #94a3b8;
}

.status-dot-up {
    background: #16a34a;
}

.status-dot-warning {
    background: #d97706;
}

.status-dot-down {
    background: #dc2626;
}

.status-service-condition {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.status-service-condition small {
    color: #64748b;
}

.status-service-details {
    display: grid;
    gap: 5px;
    color: #64748b;
    font-size: 0.86rem;
}

.status-service-details strong {
    color: #17212b;
}

.status-empty {
    margin: 42px 0;
    padding: 48px 28px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dfe7ec;
    border-radius: 16px;
}

.status-footer {
    padding: 25px 0;
    text-align: center;
    color: #64748b;
    border-top: 1px solid #dfe7ec;
}

.status-footer a {
    color: inherit;
    font-weight: 700;
}

@media (max-width: 850px) {
    .status-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .status-service-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 560px) {
    .status-header-inner {
        min-height: auto;
        padding: 16px 0;
        align-items: flex-start;
    }

    .status-header .button {
        padding: 9px 12px;
        font-size: 0.82rem;
    }

    .status-hero {
        align-items: flex-start;
        padding: 22px;
    }

    .status-summary {
        grid-template-columns: 1fr;
    }

    .status-services {
        padding: 20px;
    }

    .status-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

.admin-footer {
    margin-top: 32px;
    background: #ffffff;
    border-top: 1px solid #dfe7ec;
}

.admin-footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #64748b;
    font-size: 0.9rem;
}

.admin-footer-inner p {
    margin: 0;
}

.admin-footer-inner a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.admin-footer-inner a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .admin-footer-inner {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* =========================================================
   ABOUT AND INFORMATION PAGES
   ========================================================= */

.admin-main > .panel > .settings-section {
    padding: 28px;
    border-bottom: 1px solid #e5e7eb;
}

.admin-main > .panel > .settings-section:last-child {
    border-bottom: 0;
}

.admin-main > .panel > .settings-section:first-child {
    border-radius: 14px 14px 0 0;
}

.admin-main > .panel > .settings-section:last-child {
    border-radius: 0 0 14px 14px;
}

.admin-main .settings-section-heading {
    margin-bottom: 18px;
}

.admin-main .settings-section-heading h2 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #172033;
}

.admin-main .settings-section-heading p {
    margin: 0;
    color: #667085;
}

.admin-main .settings-section > p {
    max-width: 900px;
    margin: 0 0 14px;
    color: #475467;
    line-height: 1.7;
}

.admin-main .settings-section > p:last-child {
    margin-bottom: 0;
}

.admin-main .settings-section a {
    color: #176b5b;
    font-weight: 600;
    text-decoration: none;
}

.admin-main .settings-section a:hover {
    text-decoration: underline;
}

.admin-main .settings-section .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-main .settings-section .checkbox-card {
    display: flex;
    min-height: 120px;
    padding: 20px;
    border: 1px solid #dfe5e3;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(20, 31, 45, 0.05);
}

.admin-main .settings-section .checkbox-card span {
    display: block;
}

.admin-main .settings-section .checkbox-card strong {
    display: block;
    margin-bottom: 8px;
    color: #172033;
    font-size: 1rem;
}

.admin-main .settings-section .checkbox-card small {
    display: block;
    color: #667085;
    font-size: 0.9rem;
    line-height: 1.6;
}

.admin-main .settings-section .checkbox-card:hover {
    border-color: #9ac9be;
    box-shadow: 0 8px 24px rgba(20, 31, 45, 0.08);
    transform: translateY(-1px);
}

.admin-main .stat-card .stat-date {
    font-size: 1.35rem;
    line-height: 1.3;
}

.admin-main .panel-spacing {
    margin-top: 24px;
}

/* Information page visual markers */

.admin-main .settings-section:nth-child(1) .checkbox-card:nth-child(1) {
    border-left: 4px solid #229a6b;
}

.admin-main .settings-section:nth-child(1) .checkbox-card:nth-child(2) {
    border-left: 4px solid #e6a700;
}

.admin-main .settings-section:nth-child(1) .checkbox-card:nth-child(3) {
    border-left: 4px solid #d64545;
}

.admin-main .settings-section:nth-child(1) .checkbox-card:nth-child(4) {
    border-left: 4px solid #83909f;
}

@media (max-width: 850px) {
    .admin-main .settings-section .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .admin-main > .panel > .settings-section {
        padding: 22px;
    }
}

@media (max-width: 560px) {
    .admin-main > .panel > .settings-section {
        padding: 18px;
    }

    .admin-main .settings-section .checkbox-card {
        min-height: auto;
        padding: 17px;
    }

    .admin-main .settings-section-heading h2 {
        font-size: 1.08rem;
    }
}
