.menu-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.wide-container .menu-bar,
.wide-container .admin-menu-bar {
    width: 95%;
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
}

.wide-container .container {
    width: 95%;
    max-width: 95vw;
}

body.cloud-server-page .container {
    max-width: none;
    width: min(100%, max-content);
    background: transparent;
    box-shadow: none;
}

@supports not (width: min(100%, max-content)) {
    body.cloud-server-page .container {
        width: 100%;
        background: transparent;
        box-shadow: none;
    }
}

.menu-item {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menu-item.dashboard { color: #ff66cc; }
.menu-item.newticket { color: #00e5e5; }
.menu-item.invoices { color: #66ccff; }
.menu-item.profile { color: #b266ff; }
.menu-item.twofa { color: #66ff66; }
.menu-item.logout { color: #ff4d4d; }

.menu-item:hover {
    color: #ffa500;
    text-shadow: 0 0 8px #ff9900, 0 0 16px #ff6600;
}

.admin-menu-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    margin: 20px auto;
    padding: 10px 20px;
}

.admin-menu-item {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.admin-menu-item.dashboard { color: #ffa500; }
.admin-menu-item.kunden { color: #ff66cc; }
.admin-menu-item.ticket { color: #00e5e5; }
.admin-menu-item.zeit { color: #66ff66; }
.admin-menu-item.rechnungen { color: #ffcc33; }
.admin-menu-item.rechnung { color: #b266ff; }
.admin-menu-item.logout { color: #ff4d4d; }

.admin-menu-item:hover {
    color: #ffa500;
    text-shadow: 0 0 8px #ff9900, 0 0 16px #ff6600;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    margin-right: 6px;
}

.badge {
    background-color: #ff4d4d;
    color: #ffffff;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.8em;
    margin-left: 6px;
    vertical-align: middle;
    text-shadow: none;
}

.menu-item.ticket .badge { background-color: #ff4d4d; }
.menu-item.rechnung .badge { background-color: #b266ff; }
.menu-item.zeit .badge { background-color: #66ff66; }

.secure-form {
    text-align: center;
    margin: 20px auto;
}

.secure-form input {
    display: block;
    margin: 10px auto;
    padding: 6px 12px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

.secure-form button {
    padding: 8px 16px;
    margin: 5px;
    border: none;
    border-radius: 6px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.secure-form button[name="action"][value="send_code"] {
    color: #66ccff;
}

.secure-form button[name="action"][value="verify"] {
    color: #66ff66;
}

.secure-form button:hover {
    color: #ffa500;
    text-shadow: 0 0 8px #ff9900, 0 0 16px #ff6600;
}

.secure-form__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.billing-wrapper,
.admin-form-card,
.neon-card {
    background: rgba(12, 12, 28, 0.8);
    border: 1px solid rgba(255, 204, 51, 0.25);
    border-radius: 16px;
    padding: 24px;
    margin: 0 auto 40px;
    box-shadow: 0 0 25px rgba(255, 204, 51, 0.15);
}

.admin-form-card {
    max-width: 960px;
}

.neon-card {
    max-width: 1100px;
    width: 100%;
}

.admin-ticket-form {
    margin-top: 24px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px 22px;
}

.admin-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

.admin-form-field label {
    color: #ffcc33;
    letter-spacing: 0.02em;
}

.admin-form-field input,
.admin-form-field select,
.admin-form-field textarea {
    background: rgba(14, 14, 32, 0.9);
    border: 1px solid rgba(102, 204, 255, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    color: #e6e6ff;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.admin-form-field input:focus,
.admin-form-field select:focus,
.admin-form-field textarea:focus {
    outline: none;
    border-color: rgba(255, 165, 0, 0.7);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.35);
}

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

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

.admin-form-hint {
    color: #9aa0c6;
    font-size: 0.85rem;
}

.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.billing-quick-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0;
}

.billing-quick-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 204, 51, 0.35);
    background: rgba(18, 18, 36, 0.9);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    text-decoration: none;
    color: #ffcc33;
    transition: color 0.3s ease, text-shadow 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.billing-quick-filter:hover,
.billing-quick-filter.active {
    color: #ffa500;
    text-shadow: 0 0 8px #ff9900, 0 0 16px #ff6600;
    border-color: rgba(255, 153, 0, 0.55);
    box-shadow: 0 0 14px rgba(255, 153, 0, 0.3);
}

.billing-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 24px;
}

.billing-filter-field {
    display: flex;
    flex-direction: column;
    min-width: 200px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    color: #ffcc33;
}

.billing-filter-field label {
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.billing-filter-field select {
    background: rgba(14, 14, 32, 0.9);
    border: 1px solid rgba(255, 204, 51, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    color: #e6e6ff;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

.billing-filter-field select:focus {
    outline: none;
    border-color: rgba(255, 165, 0, 0.7);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.35);
}

.billing-filter-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.billing-feedback {
    margin: 0 auto 20px;
    padding: 12px 18px;
    border-radius: 10px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    background: rgba(20, 20, 35, 0.6);
    border: 1px solid rgba(255, 204, 51, 0.25);
    color: #ffcc33;
    text-align: center;
}

.billing-feedback.error {
    border-color: rgba(255, 77, 77, 0.4);
    color: #ff4d4d;
    box-shadow: 0 0 12px rgba(255, 77, 77, 0.25);
}

.billing-table-wrapper {
    overflow-x: auto;
    margin-top: 12px;
}

.billing-summary {
    text-align: center;
    margin: 0 auto 18px;
    padding: 10px 16px;
    border-radius: 12px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    letter-spacing: 0.03em;
    background: rgba(18, 18, 36, 0.85);
    border: 1px solid rgba(255, 204, 51, 0.35);
    box-shadow: 0 0 18px rgba(255, 204, 51, 0.25);
}

.billing-summary.open {
    color: #ffa500;
    text-shadow: 0 0 6px #ff6600, 0 0 12px #cc3300;
    animation: pulseOrange 2s infinite;
}

.billing-summary.settled {
    color: #66ff66;
    border-color: rgba(102, 255, 102, 0.45);
    box-shadow: 0 0 18px rgba(102, 255, 102, 0.25);
}

@keyframes pulseOrange {
    0% {
        text-shadow: 0 0 6px #ff6600, 0 0 12px #cc3300;
    }
    50% {
        text-shadow: 0 0 14px #ff9900, 0 0 28px #ff6600;
    }
    100% {
        text-shadow: 0 0 6px #ff6600, 0 0 12px #cc3300;
    }
}

.billing-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(12, 12, 32, 0.82);
    border: 1px solid rgba(102, 204, 255, 0.25);
    box-shadow: 0 0 18px rgba(102, 204, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

.billing-table thead th {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    background: rgba(12, 12, 32, 0.95);
    color: #e6f7ff;
    border-bottom: 2px solid rgba(102, 204, 255, 0.6);
}

.billing-table th,
.billing-table td {
    padding: 9px 12px;
    border-bottom: 1px solid rgba(102, 204, 255, 0.12);
    text-align: left;
    vertical-align: top;
}

.billing-table td.id,
.billing-table td.time,
.billing-table td.status {
    white-space: nowrap;
    text-align: center;
}

.billing-table th.actions-column {
    width: 1%;
    white-space: nowrap;
}

.billing-table td.actions {
    text-align: left;
    white-space: nowrap;
}

.billing-note {
    max-width: 320px;
    white-space: pre-wrap;
    word-break: break-word;
}

.billing-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.billing-actions form {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.billing-actions .admin-action-button--icon {
    width: 38px;
    height: 38px;
    padding: 6px;
    justify-content: center;
    gap: 0;
}

.billing-actions .admin-action-button--icon .material-symbols-outlined {
    margin-right: 0;
    font-size: 22px;
}

.billing-description {
    max-width: 420px;
}

.status-text {
    text-transform: capitalize;
}

.admin-action-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 204, 51, 0.25);
    background: rgba(15, 15, 30, 0.9);
    color: #ffcc33;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease, box-shadow 0.3s ease;
}

.admin-action-button--icon {
    width: 40px;
    height: 40px;
    padding: 6px;
    justify-content: center;
    gap: 0;
}

.admin-action-button--icon .material-symbols-outlined {
    margin-right: 0;
}

.admin-action-button--ghost {
    background: rgba(10, 10, 30, 0.6);
    color: #66ccff;
    border-color: rgba(102, 204, 255, 0.35);
}

.admin-action-button--pending {
    border-color: rgba(255, 204, 51, 0.4);
}

.admin-action-button--settled {
    color: #66ff66;
    border-color: rgba(102, 255, 102, 0.4);
}

.admin-action-button--open {
    color: #66ccff;
    border-color: rgba(102, 204, 255, 0.35);
}

.admin-action-button--export {
    color: #66ccff;
    border-color: rgba(102, 204, 255, 0.4);
}

.admin-action-button:hover {
    color: #ffa500;
    text-shadow: 0 0 8px #ff9900, 0 0 16px #ff6600;
    box-shadow: 0 0 12px rgba(255, 153, 0, 0.3);
}

.admin-action-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.billing-status-check {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(102, 255, 102, 0.12);
    border: 1px solid rgba(102, 255, 102, 0.45);
    color: #66ff66;
    font-size: 1.4rem;
    box-shadow: 0 0 14px rgba(102, 255, 102, 0.35);
}

.neon-card .menu-bar {
    margin-bottom: 24px;
}

.customer-dashboard-card {
    max-width: 1200px;
}

.neon-table-wrapper {
    margin-top: 16px;
    overflow-x: auto;
}

.neon-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(12, 12, 32, 0.82);
    border: 1px solid rgba(102, 204, 255, 0.25);
    box-shadow: 0 0 18px rgba(102, 204, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

.neon-table thead th {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    background: rgba(12, 12, 32, 0.95);
    color: #e6f7ff;
    border-bottom: 2px solid rgba(102, 204, 255, 0.6);
}

.neon-table th,
.neon-table td {
    padding: 9px 12px;
    border-bottom: 1px solid rgba(102, 204, 255, 0.12);
    text-align: left;
    vertical-align: top;
}

.neon-table tbody tr:nth-of-type(odd) {
    background: rgba(18, 18, 46, 0.78);
}

.neon-table tbody tr:nth-of-type(even) {
    background: rgba(12, 12, 38, 0.82);
}

.neon-table tbody tr:hover {
    box-shadow: 0 0 12px rgba(255, 153, 0, 0.3);
    transform: translateY(-2px);
}

.neon-table td.actions {
    white-space: nowrap;
}

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

.dashboard-row-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dashboard-empty-state {
    padding: 30px 20px;
    text-align: center;
    color: #9aa0c6;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

.customer-dashboard-welcome {
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 1.65rem;
    color: #ffd870;
    margin: 12px 0 20px;
    text-shadow: 0 0 6px rgba(255, 220, 128, 0.55), 0 0 18px rgba(255, 204, 51, 0.45);
    letter-spacing: 0.02em;
}

.customer-dashboard-welcome__name {
    font-weight: 600;
    color: #ffe9aa;
    text-shadow: 0 0 6px rgba(255, 243, 204, 0.65), 0 0 16px rgba(255, 214, 102, 0.4);
}

.priority {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

.priority--high {
    color: #ff5d5d;
    text-shadow: 0 0 8px rgba(255, 77, 77, 0.55), 0 0 16px rgba(153, 0, 0, 0.4);
}

.priority--medium {
    color: #ffd75e;
    text-shadow: 0 0 6px rgba(255, 204, 102, 0.55), 0 0 12px rgba(153, 102, 0, 0.4);
}

.priority--low {
    color: #71f29a;
    text-shadow: 0 0 6px rgba(113, 242, 154, 0.5), 0 0 14px rgba(0, 128, 64, 0.35);
}

.customer-dashboard-card .success,
.customer-dashboard-card .error {
    text-align: center;
}

.cloud-server-card {
    text-align: left;
    padding: 28px;
}

.cloud-server-card .customer-heading {
    justify-content: flex-start;
}

.cloud-server-description {
    margin: 0 0 18px;
    max-width: 960px;
    line-height: 1.6;
}

.cloud-server-login-form {
    display: grid;
    gap: 14px;
    max-width: 420px;
    margin-top: 10px;
}

.cloud-label {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.cloud-server-login-form input[type="text"],
.cloud-server-login-form input[type="password"] {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(30, 41, 59, 0.35);
    background: rgba(15, 23, 42, 0.12);
    color: #0f172a;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cloud-server-login-form input[type="text"]:focus,
.cloud-server-login-form input[type="password"]:focus {
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
    outline: none;
}

.cloud-server-forward-button {
    margin-top: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cloud-server-forward-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(56, 189, 248, 0.35);
}

.cloud-server-hint {
    margin-top: 24px;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.75);
}

.cloud-server-table-wrapper {
    margin-top: 24px;
    overflow-x: auto;
}

.cloud-server-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-family: 'Ubuntu', sans-serif;
}

.cloud-server-table th,
.cloud-server-table td {
    padding: 12px 16px;
    text-align: left;
    font-weight: 300;
}

.cloud-server-table thead th {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    font-weight: 500;
}

.cloud-server-table tbody tr {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cloud-server-table tbody tr:hover {
    transform: translateY(-1px);
}

.table-meta {
    display: block;
    font-size: 0.8rem;
    color: #4a5a70;
}

.cloud-network-block {
    margin-bottom: 32px;
}

.cloud-network-block:last-of-type {
    margin-bottom: 0;
}

.cloud-network-block .neon-table-wrapper {
    margin-bottom: 16px;
}

.cloud-network-block .neon-table-wrapper:last-of-type {
    margin-bottom: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.status-badge--running,
.status-badge--active {
    background: rgba(113, 242, 154, 0.12);
    border: 1px solid rgba(113, 242, 154, 0.35);
    color: #1f9c4f;
}

.status-badge--initializing,
.status-badge--starting,
.status-badge--stopping {
    background: rgba(255, 214, 102, 0.12);
    border: 1px solid rgba(255, 214, 102, 0.4);
    color: #b26b00;
}

.status-badge--off,
.status-badge--unknown {
    background: rgba(154, 160, 198, 0.12);
    border: 1px solid rgba(154, 160, 198, 0.3);
    color: #4a4f6f;
}

@media (max-width: 900px) {
    .cloud-server-card {
        padding: 20px;
    }

    .cloud-server-card .customer-heading {
        justify-content: center;
        text-align: center;
    }

    .cloud-server-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cloud-server-table {
        min-width: 100%;
    }
}

@media (max-width: 720px) {
    .cloud-server-table thead {
        display: none;
    }

    .cloud-server-table tr {
        display: block;
        margin-bottom: 18px;
        border: 1px solid rgba(102, 204, 255, 0.2);
        border-radius: 12px;
        overflow: hidden;
    }

    .cloud-server-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(102, 204, 255, 0.1);
    }

    .cloud-server-table td:last-child {
        border-bottom: none;
    }

    .cloud-server-table td::before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: 12px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.75rem;
    }

    .status-badge {
        margin-left: auto;
    }
}

.customer-ticket-card {
    max-width: 960px;
}

.customer-ticket-card .admin-form-actions {
    justify-content: flex-end;
}

.customer-ticket-card .admin-form-actions .admin-action-button--ghost {
    margin-right: auto;
}

.customer-ticket-card .error,
.customer-ticket-card .success {
    text-align: center;
}

.billing-table tbody tr.billing-ticket-row {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.billing-table tbody tr.billing-ticket-row:nth-of-type(odd) {
    background: rgba(18, 18, 46, 0.78);
}

.billing-table tbody tr.billing-ticket-row:nth-of-type(even) {
    background: rgba(10, 10, 34, 0.82);
}

.billing-table tbody tr.billing-ticket-row:hover {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transform: translateY(-2px);
}

.billing-table tbody tr.billing-status-offen {
    border-left: 3px solid rgba(255, 204, 51, 0.65);
}

.billing-table tbody tr.billing-status-abzurechnen {
    border-left: 3px solid rgba(255, 153, 0, 0.7);
}

.billing-table tbody tr.billing-status-abgerechnet {
    border-left: 3px solid rgba(102, 255, 102, 0.7);
}

.billing-customer-group td {
    background: rgba(18, 18, 36, 0.95);
    color: #ffcc33;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255, 204, 51, 0.3);
}

.billing-header-actions {
    display: flex;
    justify-content: flex-end;
    margin: 10px 0 20px;
}

.billing-customer-group td .material-symbols-outlined {
    vertical-align: middle;
    margin-right: 8px;
}

.billing-customer-summary {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 1.1em;
}

.billing-customer-summary.open {
    color: #ff9900;
    text-shadow: 0 0 6px #ff6600, 0 0 12px #cc3300;
    animation: pulseOrange 2s infinite;
}

.billing-customer-summary.settled {
    color: #66ff66;
    text-shadow: 0 0 6px #33cc33, 0 0 12px #009900;
}

.billing-empty-state {
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    color: #cccccc;
    margin: 40px 0 10px;
}

.muted {
    color: #8a8a8a;
    font-style: italic;
}

@media (max-width: 900px) {
    .billing-table th,
    .billing-table td {
        padding: 8px 10px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .billing-wrapper {
        padding: 18px;
    }

    .billing-actions {
        flex-direction: column;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-form-actions {
        justify-content: center;
    }

    .billing-table td,
    .billing-table th {
        font-size: 0.88rem;
    }
}

.kpi-card.imap.ok {
    color: #66ff66;
}

.kpi-card.imap.new {
    color: #ffcc00;
}

.kpi-card.imap.error {
    color: #ff4d4d;
}

.filter-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

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

@media (max-width: 520px) {
    .filter-container {
        grid-template-columns: 1fr;
    }
}
