* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f3f4f6;
    color: #1f2937;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
    z-index: 997;
    width: 100%;
}

.navbar-brand h1 {
    font-size: 1.5rem;
    color: #3B82F6;
    margin-bottom: 0.25rem;
}

.navbar-brand .tagline {
    font-size: 0.875rem;
    color: #6b7280;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-link:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.nav-link.active {
    background: #3B82F6;
    color: white;
}

.nav-section {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
    cursor: default;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.35rem;
    padding: 0.5rem;
    margin-left: auto;
    z-index: 999;
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: #1f2937;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Container & Screens */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.screen {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    display: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 100%;
}

.screen.active {
    display: block;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.header h2 {
    font-size: 1.875rem;
    color: #1f2937;
}

.header-controls {
    display: flex;
    gap: 1rem;
}

/* Login */
.login-box {
    max-width: 400px;
    margin: 4rem auto;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    font-size: 2rem;
    color: #3B82F6;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #6b7280;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 0;
}

.login-links {
    display: flex;
    justify-content: space-around;
    font-size: 0.875rem;
}

.login-links a {
    color: #3B82F6;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

.login-footer {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 2rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.btn-primary {
    background: #3B82F6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    background: #e5e7eb;
    color: #1f2937;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: #1f2937;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #1f2937;
}

.modal-body {
    padding: 1.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form .form-group {
    margin-bottom: 0;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    justify-content: flex-end;
}

.modal-footer .btn {
    margin: 0;
}

/* Dashboard */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: linear-gradient(135deg, #3B82F6 0%, #2563eb 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.metric-change {
    font-size: 0.875rem;
    font-weight: 600;
}

.metric-change.up {
    color: #10b981;
}

.metric-change.down {
    color: #ef4444;
}

.charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-box {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.chart-box h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar {
    height: 20px;
    background: linear-gradient(90deg, #3B82F6, #10b981);
    border-radius: 0.25rem;
}

.bar-item span {
    font-size: 0.875rem;
    min-width: 150px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border-radius: 0.375rem;
}

.category-label {
    font-weight: 500;
}

.category-count {
    color: #3B82F6;
    font-weight: 600;
}

.status-box {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.status-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge.rejected {
    background: #fee2e2;
    color: #991b1b;
}

.progress-container {
    margin-top: 1rem;
}

.progress-bar {
    display: flex;
    height: 30px;
    border-radius: 0.375rem;
    overflow: hidden;
    background: #e5e7eb;
}

.progress-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.last-update {
    text-align: right;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Protocol Queue */
.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-family: inherit;
}

.protocol-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.protocol-table thead {
    background: #f3f4f6;
}

.protocol-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
}

.protocol-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.protocol-table tr.clickable {
    cursor: pointer;
}

.protocol-table tr.clickable:hover {
    background: #f9fafb;
}

.urgency.high {
    color: #dc2626;
}

.urgency.medium {
    color: #d97706;
}

.urgency.low {
    color: #059669;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    background: #dbeafe;
    color: #1e40af;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.in-progress {
    background: #fed7aa;
    color: #b45309;
}

.status-badge.resolved {
    background: #dcfce7;
    color: #166534;
}

.pagination {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Protocol Detail */
.detail-header {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.info-col {
    display: flex;
    flex-direction: column;
}

.info-col strong {
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.message-thread {
    margin-bottom: 2rem;
}

.message-thread h3 {
    margin-bottom: 1rem;
}

.message {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    border-left: 4px solid #3B82F6;
}

.message.citizen {
    background: #eff6ff;
    border-left-color: #3B82F6;
}

.message.system {
    background: #f0fdf4;
    border-left-color: #10b981;
}

.message-sender {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.message-time {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.message-content {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.message-status {
    font-size: 0.75rem;
    color: #6b7280;
}

.kb-context {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.kb-context h3 {
    margin-bottom: 1rem;
    color: #92400e;
}

.kb-section {
    background: white;
    padding: 1rem;
    border-radius: 0.375rem;
}

.kb-section strong {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.kb-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.kb-section li {
    margin-bottom: 0.5rem;
}

.kb-section em {
    display: block;
    background: #f3f4f6;
    padding: 0.75rem;
    border-radius: 0.375rem;
    margin: 0.75rem 0;
}

.reply-section {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.reply-textarea {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.reply-textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.reply-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reply-status {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.reply-status label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.reply-status input[type="radio"] {
    cursor: pointer;
}

/* Sections */
.section {
    margin-bottom: 2rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.section h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.info-box {
    background: white;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.info-box p {
    margin-bottom: 0.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-indicator {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-indicator.connected {
    background: #dcfce7;
    color: #166534;
}

.status-indicator.disconnected {
    background: #fee2e2;
    color: #991b1b;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1f2937;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.375rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: none;
    max-width: 400px;
    z-index: 1000;
}

.toast.show {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.75rem;
        font-size: 0.875rem;
    }

    .nav-link {
        padding: 0.4rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        gap: 0;
        padding: 0.75rem;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        flex: 1;
    }

    .navbar-brand h1 {
        font-size: 1.1rem;
    }

    .navbar-brand .tagline {
        font-size: 0.7rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        width: 100%;
        background: white;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        z-index: 998;
    }

    .nav-menu.active {
        max-height: 80vh;
        padding: 0.5rem 0;
    }

    .nav-section {
        width: 100%;
        margin: 0;
        padding: 0.75rem 1rem;
        border-top: 1px solid #e5e7eb;
        border-bottom: none;
        font-size: 0.75rem;
    }

    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        white-space: normal;
        display: block;
        width: 100%;
        text-align: left;
        border: none;
        background: none;
        cursor: pointer;
        color: #6b7280;
        text-decoration: none;
    }

    .nav-link:hover,
    .nav-link:active {
        background: #f3f4f6;
        color: #1f2937;
    }

    .container {
        padding: 1rem;
    }

    .header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .header h2 {
        font-size: 1.5rem;
    }

    .header-controls {
        flex-direction: column;
        width: 100%;
    }

    .header-controls select,
    .header-controls button {
        width: 100%;
    }

    .filter-select {
        width: 100%;
    }

    .metrics-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-card {
        padding: 1rem;
    }

    .metric-value {
        font-size: 2rem;
    }

    .charts-row {
        grid-template-columns: 1fr;
    }

    .protocol-table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
    }

    .protocol-table thead,
    .protocol-table tbody,
    .protocol-table th,
    .protocol-table td,
    .protocol-table tr {
        display: block;
    }

    .protocol-table thead {
        display: none;
    }

    .protocol-table tr {
        margin-bottom: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 0.375rem;
    }

    .protocol-table td {
        display: grid;
        grid-template-columns: 100px 1fr;
        padding: 0.5rem;
        border: none;
    }

    .protocol-table td:before {
        content: attr(data-label);
        font-weight: bold;
        grid-column: 1;
    }

    .login-box {
        max-width: 100%;
        margin: 1rem;
        padding: 1.5rem;
    }

    .login-header h2 {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        padding: 0.6rem 1rem;
    }

    .info-row {
        grid-template-columns: 1fr;
    }

    .detail-header {
        padding: 1rem;
    }

    .kb-context {
        padding: 1rem;
    }

    .reply-section {
        padding: 1rem;
    }

    .reply-textarea {
        min-height: 100px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons button {
        width: 100%;
    }

    .section {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .status-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    .badge {
        display: block;
        width: 100%;
        text-align: center;
    }

    .progress-bar {
        min-height: 25px;
    }

    .message {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .message-sender {
        font-size: 0.875rem;
    }

    .message-time {
        font-size: 0.7rem;
    }

    .message-content {
        font-size: 0.875rem;
    }

    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-footer .btn {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }

    .navbar {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .navbar-brand h1 {
        font-size: 0.95rem;
    }

    .navbar-brand .tagline {
        font-size: 0.65rem;
    }

    .hamburger {
        display: flex !important;
        padding: 0.25rem;
    }

    .hamburger span {
        width: 18px;
        height: 2px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: calc(100vh - 50px);
        z-index: 998;
        width: 100%;
        padding: 0;
    }

    .nav-menu.active {
        max-height: calc(100vh - 50px);
    }

    .nav-section {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        text-align: left;
        width: 100%;
        display: block;
    }

    .container {
        padding: 0.5rem;
        margin: 0;
    }

    .screen {
        padding: 1rem;
        border-radius: 0.25rem;
    }

    .header {
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .header h2 {
        font-size: 1.1rem;
    }

    .header-controls {
        gap: 0.5rem;
    }

    .header-controls select,
    .header-controls button {
        width: 100%;
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .metric-value {
        font-size: 1.25rem;
    }

    .metric-card {
        padding: 0.75rem;
    }

    .metric-label {
        font-size: 0.75rem;
    }

    .login-box {
        margin: 0;
        padding: 1rem;
        max-width: 100%;
        border: none;
        box-shadow: none;
    }

    .login-header h2 {
        font-size: 1.25rem;
    }

    .protocol-table {
        font-size: 0.7rem;
    }

    .protocol-table td {
        grid-template-columns: 70px 1fr;
        padding: 0.3rem;
        font-size: 0.7rem;
    }

    .section {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.5rem;
        font-size: 16px;
    }

    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        width: auto;
    }

    .btn-small {
        padding: 0.25rem 0.4rem;
        font-size: 0.65rem;
    }

    .btn-block {
        width: 100%;
    }

    .modal-content {
        max-width: 100%;
        border-radius: 0.375rem;
    }

    .modal-header {
        padding: 0.75rem;
    }

    .modal-header h2 {
        font-size: 1.1rem;
    }

    .modal-close {
        width: 1.5rem;
        height: 1.5rem;
    }

    .modal-body {
        padding: 0.75rem;
    }

    .modal-footer {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .modal-footer .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .info-box {
        padding: 0.75rem;
    }

    .chart-box {
        padding: 1rem;
    }

    .message {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .message-sender {
        font-size: 0.8rem;
    }

    .message-time {
        font-size: 0.65rem;
    }

    .message-content {
        font-size: 0.8rem;
    }

    .toast {
        bottom: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
        padding: 0.75rem;
        font-size: 0.85rem;
        max-width: none;
    }
}
