:root {
    --bg: #eef2f5;
    --bg-soft: #f6f8fa;
    --bg-accent: #e3ebf2;
    --panel: #ffffff;
    --ink: #1f2933;
    --muted: #52606d;
    --line: #cbd2d9;
    --line-strong: #9aa5b1;
    --accent: #245b8f;
    --accent-dark: #1b456c;
    --accent-soft: #e9f1f8;
    --shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    --radius: 10px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(36, 91, 143, 0.08), transparent 22%),
        radial-gradient(circle at bottom right, rgba(82, 96, 109, 0.08), transparent 18%),
        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 52%, #e9eef2 100%);
}

a {
    color: inherit;
}

.public-site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 14px 16px;
    background: rgba(246, 248, 250, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(154, 165, 177, 0.45);
}

.public-site-header-inner {
    width: min(var(--max-width), calc(100% - 16px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.public-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.public-brand h1 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.public-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.public-nav a {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f2f6f9 100%);
    text-decoration: none;
    font-weight: 700;
    color: var(--ink);
}

.public-nav a.active {
    background: linear-gradient(180deg, #2f6ea9 0%, var(--accent) 100%);
    color: white;
    border-color: var(--accent);
}

.public-nav a:hover,
.public-nav a:focus {
    background: linear-gradient(180deg, #2f6ea9 0%, var(--accent) 100%);
    color: white;
    border-color: var(--accent);
}

.hero {
    padding: 72px 24px 40px;
}

.public-hero .hero-content {
    background:
        linear-gradient(135deg, rgba(36, 91, 143, 0.07), rgba(227, 235, 242, 0.3) 38%, transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.hero-content,
.public-main,
.admin-main,
.admin-header,
.admin-nav {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
}

.hero-content {
    background:
        linear-gradient(135deg, rgba(36, 91, 143, 0.04), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.35;
    pointer-events: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 16px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f3f7fa 100%);
    box-shadow: 0 8px 18px rgba(36, 91, 143, 0.08);
}

.brand-mark img {
    max-width: 150%;
    max-height: 150%;
    display: block;
}

.brand-mark-small {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    padding: 6px;
}

.eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
}

h1,
h2,
h3 {
    margin-top: 0;
}

h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 14px;
}

.lead {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.hero-actions,
.panel-header {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.ghost-link,
.card-link,
.admin-nav a {
    text-decoration: none;
    transition: 0.2s ease;
}

.primary-button,
.secondary-button,
.ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: bold;
}

.primary-button {
    background: linear-gradient(180deg, #2f6ea9 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 6px 14px rgba(36, 91, 143, 0.18);
}

.primary-button:hover {
    background: var(--accent-dark);
}

.secondary-button,
.ghost-link {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f9 100%);
}

.public-main,
.admin-main {
    padding-bottom: 40px;
}

.public-main-friendly {
    padding-top: 24px;
}

.public-footer {
    padding: 18px 16px 26px;
}

.public-footer-inner {
    width: min(var(--max-width), calc(100% - 16px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-access-link {
    font-size: 0.82rem;
    color: #6b7785;
    text-decoration: none;
}

.admin-access-link:hover,
.admin-access-link:focus {
    color: var(--accent);
    text-decoration: underline;
}

.panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 252, 0.98) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
    position: relative;
}

.panel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(36, 91, 143, 0.08) 72%, transparent 100%);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.card-grid,
.two-column {
    display: grid;
    gap: 20px;
}

.news-grid,
.public-list-grid {
    display: grid;
    gap: 20px;
}

.news-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.compact-news-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.public-list-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 24px;
}

.two-column {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    background:
        linear-gradient(180deg, #f9fbfc 0%, #f3f7fa 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.card p {
    color: var(--muted);
}

.news-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.news-card.featured {
    background:
        linear-gradient(135deg, rgba(36, 91, 143, 0.06), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    border-color: #bcd0e1;
}

.news-meta {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.86rem;
}

.news-meta-strong {
    font-size: 1rem;
    font-weight: 700;
}

.friendly-empty {
    padding: 28px;
    border: 1px dashed #b9c8d5;
    border-radius: 12px;
    background: linear-gradient(180deg, #fbfdff 0%, #f5f9fc 100%);
}

.featured-news-card {
    padding: 28px;
    border: 1px solid #b9d0e5;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(36, 91, 143, 0.08), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
    box-shadow: 0 8px 20px rgba(36, 91, 143, 0.08);
}

.featured-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.featured-news-card h3 {
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
    line-height: 1.2;
    margin-bottom: 14px;
}

.featured-lead {
    margin: 0 0 18px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #324252;
}

.markdown-card-large {
    font-size: 1.05rem;
}

.public-highlight-panel::before {
    height: 5px;
}

.public-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #bfd0df;
    background: linear-gradient(180deg, #f7fbff 0%, #edf4fa 100%);
}

.public-shortcut-card {
    min-height: 220px;
}

.news-list-stack {
    display: grid;
    gap: 0;
}

.featured-news-card-soft {
    box-shadow: none;
    border-color: #c9d7e3;
}

.public-file-card {
    min-height: 220px;
}

.public-form-panel {
    background:
        linear-gradient(135deg, rgba(36, 91, 143, 0.05), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 251, 0.98) 100%);
}

.card-link {
    color: var(--accent);
    font-weight: bold;
}

.check-list {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    margin-bottom: 18px;
    background:
        linear-gradient(180deg, #e3ebf2 0%, #d9e3eb 100%);
    border: 1px solid #bcc7d2;
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.filters input,
.filters select,
.filters button {
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--line-strong);
    font-size: 0.95rem;
}

.filters input,
.filters select {
    background: #ffffff;
    color: var(--ink);
}

.filters button {
    background: linear-gradient(180deg, #2f6ea9 0%, var(--accent) 100%);
    color: white;
    border-color: var(--accent);
    font-weight: bold;
    cursor: pointer;
}

.table-wrap {
    overflow: auto;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.data-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 12px 14px;
    text-align: left;
    background: linear-gradient(180deg, #526272 0%, #3f4d5a 100%);
    color: white;
    font-weight: 700;
}

.data-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #dde3e8;
}

.data-table tbody tr:nth-child(even) {
    background: #f8fafb;
}

.data-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.data-table tbody tr:hover {
    background: #edf3f8;
}

.status-row {
    position: relative;
}

.status-row td:first-child {
    position: relative;
    padding-left: 18px;
}

.status-row td:first-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-radius: 4px;
}

.status-row.status-al-dia td:first-child::before {
    background: #1c7c54;
}

.status-row.status-adeuda td:first-child::before {
    background: #d4a72c;
}

.status-row.status-inactivo td:first-child::before {
    background: #b5483f;
}

.table-meta {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

.estado {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: bold;
    color: white;
}

.estado.activo,
.estado.a {
    background: #1c7c54;
}

.estado.pendiente,
.estado.p {
    background: #7b7b7b;
}

.estado.inactivo,
.estado.i {
    background: #b5483f;
}

.estado.al-dia {
    background: #1c7c54;
}

.estado.adeuda {
    background: #d4a72c;
    color: #2b2410;
}

.estado.revisada,
.estado.contactada {
    background: #4c78a8;
}

.estado.aprobada {
    background: #1c7c54;
}

.estado.rechazada {
    background: #b5483f;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--accent);
    text-decoration: none;
    border: 1px solid #bfd0df;
    background: linear-gradient(180deg, #f7fbff 0%, #edf4fa 100%);
    font-weight: bold;
}

.text-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.pagination {
    padding: 14px 4px 4px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    margin: 0 4px;
    padding: 6px 10px;
    border-radius: 6px;
    background: #dbe4ec;
    color: var(--ink);
    text-decoration: none;
}

.pagination .active {
    background: #3f4d5a;
    color: white;
}

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

.tabs-vertical {
    flex-direction: column;
    align-items: stretch;
}

.tab-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f9 100%);
    text-decoration: none;
}

.tab-link.active {
    background: linear-gradient(180deg, #2f6ea9 0%, var(--accent) 100%);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 6px 14px rgba(36, 91, 143, 0.16);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.92rem;
    color: var(--muted);
}

.checkbox-field {
    justify-content: end;
}

.checkbox-field label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    color: var(--ink);
}

.checkbox-field input[type="checkbox"] {
    width: 18px;
    min-height: 18px;
    margin: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--line-strong);
    background: #fff;
    font: inherit;
    color: var(--ink);
}

.form-field textarea {
    min-height: 110px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.button,
.button-secondary,
.button-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    font: inherit;
}

.button {
    background: linear-gradient(180deg, #2f6ea9 0%, var(--accent) 100%);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 6px 14px rgba(36, 91, 143, 0.16);
}

.button-secondary {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f8 100%);
    color: var(--ink);
    border-color: var(--line);
}

.button-danger {
    background: #fff2f1;
    color: #a63f38;
    border-color: #e4beb9;
}

.notice {
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #b8ddd6;
    background: #edf9f6;
    color: #0a5145;
}

.warning {
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #e5d4a8;
    background: #fff8e5;
    color: #705b14;
}

.admin-body {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.15)),
        linear-gradient(180deg, #edf2f5 0%, #e6edf2 100%);
}

.admin-header {
    padding: 22px 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(154, 165, 177, 0.6);
    margin-bottom: 14px;
}

.admin-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-header h1 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.admin-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 16px;
}

.admin-nav a {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f3f7fa 100%);
}

.admin-nav a.active,
.admin-nav a:hover {
    background: linear-gradient(180deg, #2f6ea9 0%, var(--accent) 100%);
    color: white;
    border-color: var(--accent);
}

.status-badge {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.92rem;
    border: 1px solid #c6d8e8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.user-chip {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
    min-width: 180px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.user-chip strong {
    font-size: 0.92rem;
}

.user-chip span {
    font-size: 0.82rem;
    color: var(--muted);
}

.inline-form {
    margin: 0;
}

.actions-cell {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.login-card {
    width: min(460px, 100%);
    background:
        linear-gradient(135deg, rgba(36, 91, 143, 0.04), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.login-form {
    display: grid;
    gap: 14px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.detail-sidebar {
    position: sticky;
    top: 18px;
}

.sidebar-panel {
    margin-bottom: 16px;
}

.summary-list {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.summary-list strong {
    color: var(--ink);
    display: inline-block;
    min-width: 64px;
}

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

.dashboard-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
    gap: 20px;
    align-items: start;
}

.dashboard-sidebar {
    display: grid;
    gap: 18px;
}

.info-note-form textarea {
    min-height: 320px;
    font-family: Consolas, "Courier New", monospace;
    line-height: 1.55;
}

.helper-text {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #edf4fa 100%);
    color: var(--accent);
    cursor: pointer;
    font-size: 1.05rem;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.icon-button:hover {
    background: linear-gradient(180deg, #f7fbff 0%, #e5eff8 100%);
    border-color: #b8cde0;
}

.helper-text code {
    padding: 2px 6px;
    border-radius: 5px;
    background: #eef3f7;
    border: 1px solid #d3dde6;
    font-family: Consolas, "Courier New", monospace;
}

.markdown-card {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    line-height: 1.65;
}

.admin-note-card {
    min-height: 180px;
}

.markdown-card h1,
.markdown-card h2,
.markdown-card h3 {
    margin-bottom: 12px;
}

.markdown-card p,
.markdown-card ul {
    margin: 0 0 12px;
}

.markdown-card ul {
    padding-left: 20px;
}

.markdown-card a {
    color: var(--accent);
}

.markdown-empty,
.history-empty {
    margin: 0;
    color: var(--muted);
}

.history-meta {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.history-list {
    display: grid;
    gap: 12px;
}

.editor-drawer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #dbe4ec;
}

.history-item {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: linear-gradient(180deg, #fcfdfe 0%, #f4f8fb 100%);
}

.history-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.history-head strong {
    color: var(--ink);
}

.history-head span,
.history-item p {
    color: var(--muted);
}

.history-item p {
    margin: 0;
    line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
    outline: 2px solid rgba(36, 91, 143, 0.28);
    outline-offset: 1px;
}

.hero {
    padding: 36px 24px 24px;
}

@media (max-width: 640px) {
    .public-site-header {
        position: static;
    }

    .hero {
        padding-top: 40px;
    }

    .hero-content,
    .panel {
        padding: 24px;
    }

    .filters {
        padding: 10px;
    }

    .filters input,
    .filters select,
    .filters button {
        width: 100%;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .public-nav {
        width: 100%;
        flex-direction: column;
    }

    .public-nav a {
        justify-content: center;
    }

    .public-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-news-card {
        padding: 22px;
    }
}
