/* --- Variables & Modern Theme --- */
:root {
    /* Base Colors */
    --bg-deep: #0f1016;
    --bg-surface: #1a1c29;
    --bg-glass: rgba(30, 32, 48, 0.7);
    --bg-glass-hover: rgba(40, 44, 66, 0.8);

    /* Accents */
    --primary: #6366f1;
    /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.5);
    --accent: #8b5cf6;
    /* Violet */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;

    /* Text */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Borders & Effects */
    --border-glass: rgba(255, 255, 255, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --blur-amt: 12px;

    --radius-lg: 16px;
    --radius-md: 10px;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Utility */
.hidden {
    display: none;
}

/* --- Global Scrollbar Styling --- */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    border: 2px solid transparent;
    /* Creates padding effect */
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
    background-clip: content-box;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-deep);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    color: var(--text-main);
    font-family: var(--font-sans);
    margin: 0;
    min-height: 100vh;
    font-size: 15px;
    line-height: 1.6;
}

/* --- Layout System (3 Columns) --- */
.app-layout {
    display: grid;
    /* Fixed width for ads, flexible center with min-width 0 to prevent overflow blowouts */
    grid-template-columns: 320px minmax(0, 1fr) 320px;
    gap: 2rem;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    /* Prevent body scroll from rogue elements */
}

.main-content {
    grid-column: 2;
    /* Center column */
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    min-width: 0;
    /* Prevent Grid blowout from wide content */
}

.ad-sidebar {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    /* Reduced top padding */
    height: 100%;
}

.ad-placeholder {
    width: 300px;
    /* Wider: Standard Half Page / Large Rectangle width */
    height: calc(100vh - 2rem);
    /* Full height minus margins */
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-glass);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: sticky;
    /* Keep it visible/full height feeling on scroll */
    top: 1rem;
}

/* Responsive: Collapse sidebars on mobile/tablet */
@media (max-width: 1400px) {
    .app-layout {
        grid-template-columns: 1fr;
        /* Single column */
    }

    .main-content {
        grid-column: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .ad-sidebar {
        display: none;
        /* Hide ads on smaller screens */
    }
}

/* --- Glassmorphism Components --- */
.controls-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Default spacing between stacked panels */
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur-amt));
    -webkit-backdrop-filter: blur(var(--blur-amt));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    padding: 2rem;
    transition: transform 0.2s, border-color 0.2s;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- Header Section --- */
.main-header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-area {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.main-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    position: relative;
}

.badge {
    position: absolute;
    top: -5px;
    right: -40px;
    font-size: 0.8rem;
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    -webkit-text-fill-color: initial;
    font-weight: 700;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Upload Card --- */
.upload-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.card-header h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.drop-zone {
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    position: relative;
}

.drop-zone:hover,
.drop-zone.drag-over {
    background: rgba(99, 102, 241, 0.05);
}

.drop-content {
    pointer-events: none;
}

.upload-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.3s;
    font-style: normal;
}

.drop-zone:hover .upload-icon {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.drop-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-main);
}

.drop-subtitle {
    color: var(--text-dim);
    margin-top: 0.5rem;
}

#har-file {
    display: none;
}

.file-info-hidden {
    display: none;
}

.tag {
    display: inline-block;
    margin-top: 1rem;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* --- Options Grid --- */
.options-card h2 {
    font-size: 1.25rem;
    margin: 0;
}

.options-title-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.full-width {
    grid-column: 1 / -1;
}

.filter-group label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group .icon {
    opacity: 0.7;
}

/* Inputs & Selects */
input[type="text"],
input[type="number"],
select {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* Checkbox Pills */
.checkbox-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill {
    cursor: pointer;
    user-select: none;
    display: block;
    /* Important for flex */
    margin: 0 !important;
    /* Override generic margins */
}

.pill input {
    display: none;
}

.pill span {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.2s;
    color: var(--text-muted);
}

.pill input:checked+span {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* Toggle Switch */
.input-with-action {
    display: flex;
    gap: 1rem;
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin: 0 !important;
}

.toggle-switch input {
    display: none;
}

.slider {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    position: relative;
    transition: 0.2s;
    display: inline-block;
}

.slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: 0.2s;
}

.toggle-switch input:checked+.slider {
    background: var(--primary);
}

.toggle-switch input:checked+.slider::before {
    transform: translateX(20px);
}

.label-text {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.toggle-switch input:checked~.label-text {
    color: var(--text-main);
}

/* Buttons */
.analyze-button,
.glow-button {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.glow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.glass-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.glass-button.small {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
}

/* Results Section */
.results-hidden {
    display: none;
}

.results-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

#results-container {
    padding: 0;
    overflow-x: auto;
    /* Enable horizontal scroll, maintain radius */
    max-width: 100%;
    /* Ensure it doesn't exceed parent */
    position: relative;
}

/* Table */
.result-table {
    width: 100%;
    min-width: 800px;
    /* Force horizontal scroll on small screens */
    /* Force horizontal scroll on small screens */
    border-collapse: separate;
    /* Changed from collapse to allow sticky headers if needed later */
    border-spacing: 0;
    table-layout: fixed;
    /* STRICTLY respect column widths and forcing truncation */
}

/* Ensure the container has the styled scrollbar */
#results-container::-webkit-scrollbar {
    height: 12px;
}

#results-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

#results-container::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 6px;
    border: 3px solid transparent;
    background-clip: content-box;
}

#results-container::-webkit-scrollbar-thumb:hover {
    background: var(--text-dim);
    border: 3px solid transparent;
    background-clip: content-box;
}

.result-table th {
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-muted);
    font-weight: 600;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-glass);
    cursor: pointer;
}

.result-table th:hover {
    color: var(--text-main);
}

.result-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    vertical-align: middle;
}

.result-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.result-table tr {
    cursor: pointer;
}

.result-table td.url {
    color: var(--primary);
}

.result-table td.url div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Status Colors */
.status-success {
    color: var(--success);
    font-weight: 600;
}

.status-error {
    color: var(--error);
    font-weight: 600;
}

/* Group Rows */
.group-row {
    background: rgba(99, 102, 241, 0.1);
    cursor: pointer;
    border-left: 4px solid var(--primary);
    transition: background 0.2s;
}

.group-row:hover {
    background: rgba(99, 102, 241, 0.2);
}

.group-row td {
    font-weight: 700;
    color: var(--text-main);
}

.sub-row {
    background: rgba(0, 0, 0, 0.2);
}

.sub-row td:first-child {
    padding-left: 2rem;
    /* Indentation */
    position: relative;
}

.sub-row td:first-child::before {
    content: '↳';
    position: absolute;
    left: 1rem;
    color: var(--text-dim);
}

/* --- Content Section --- */
/* Separator removed to prevent visual artifact */
.separator {
    display: none;
}

.content-section {
    padding: 3rem !important;
}

.content-header h2 {
    font-size: 1.8rem;
    margin-top: 0;
    background: -webkit-linear-gradient(0deg, #bb9eff, #ff9eb5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.info-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-main);
}

.info-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.steps-list {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 3rem;
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-glass);
}

.steps-list li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* Footer */
.main-footer {
    text-align: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
    color: var(--text-dim);
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.dot {
    color: var(--border-glass);
}

/* --- Modals --- */
.modal-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-hidden:not(.hidden) .glass-overlay {
    opacity: 1;
}

/* Logic handled by JS class toggle actually */

.modal-hidden .glass-overlay,
.modal-hidden .glass-modal {
    /* Transition handled by removal of class */
}

/* We need to re-implement display none logic properly with JS or use visibility */
/* Reverting to display:none for simplicity as per original script logic */
.modal-hidden {
    display: none;
}

.glass-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-lg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(0, 0, 0, 0.2);
}

.close-icon {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
}

.close-icon:hover {
    color: white;
}

.modal-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-nav {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-glass);
    overflow-x: auto;
    /* Allow horizontal scroll for tabs on mobile */
    scrollbar-width: none;
    /* Hide scrollbar for cleaner look */
}

.modal-nav::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.modal-tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.modal-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(255, 255, 255, 0.02);
}

.action-link {
    margin-left: auto;
    padding: 0 1.5rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
}

.modal-viewport {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Scrollbar */
.pretty-scroll::-webkit-scrollbar {
    width: 8px;
}

.pretty-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.pretty-scroll::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 4px;
}

.pretty-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--text-dim);
}

/* JSON Pre */
pre {
    color: #a5b3ce;
    font-family: 'Consolas', monospace;
    white-space: pre-wrap;
    word-break: break-all;
}

/* Loader */
.spinner-hidden {
    display: none;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: var(--primary);
    border-radius: 50%;
    margin: 2rem auto;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Small Modal */
.small-modal {
    height: auto;
    max-width: 500px;
}

.modal-intro {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-muted);
    text-align: center;
}

.download-global-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.modal-actions-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-glass);
}

/* Multiselect special */
.multiselect {
    position: relative;
    /* Anchor for absolute dropdown */
}

.glass-input {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.glass-dropdown {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    z-index: 1000;
    /* Higher z-index to float above table headers */
    max-height: 250px;
    overflow-y: auto;
    margin-top: 5px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.glass-dropdown label {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-dropdown label:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* --- Table Column Widths (Preserved) --- */
.result-table th:nth-child(1) {
    width: 12%;
}

/* Method */
.result-table th:nth-child(2) {
    width: 8%;
}

/* Status */
.result-table th:nth-child(3) {
    width: 10%;
}

/* Time */
.result-table th:nth-child(4) {
    width: 10%;
}

/* Size */
.result-table th:nth-child(5) {
    width: 12%;
}

/* MIME */
.result-table th:nth-child(6) {
    width: auto;
    /* Let URL take remaining space */
}

/* URL */

.response-preview {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 1rem;
    color: #e2e8f0;
}

/* Endpoint Grouping */
.result-group .group-title {
    padding: 1rem 1.5rem;
    background-color: rgba(99, 102, 241, 0.1);
    margin: 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-glass);
    cursor: pointer;
    font-family: monospace;
}

.endpoint-table-container {
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* --- Responsive Table Fixes --- */
#results-container {
    overflow-x: auto;
    /* Enable horizontal scroll for tables */
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    /* .result-table td.url rule removed to allow full width scrolling */

    .glass-panel {
        padding: 1.5rem 1rem;
        /* Compact padding */
    }

    .main-header h1 {
        font-size: 2rem;
    }

    .result-table th,
    .result-table td {
        padding: 0.75rem 0.5rem;
        /* Compact cells */
        font-size: 0.85rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
        /* Stack options on mobile */
        gap: 1rem;
        padding: 1rem;
    }

    /* Results Header - Ensure it stays on top */
    .results-header {
        position: relative;
        z-index: 5;
    }

    #download-har-btn {
        /* Make sure button is visible and not overlapped */
        position: relative;
        z-index: 10;
    }

    .drop-zone {
        padding: 2rem 1rem;
    }

    .ad-placeholder {
        display: none;
        /* Double check ads are hidden */
    }

    .app-layout {
        gap: 1rem;
    }

    .main-content {
        padding: 1rem 0.5rem;
    }
}

/* === CRITICAL FIX FOR TABS === */
.modal-tab-pane {
    display: none;
}

.modal-tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-error {
    color: #ef4444;
    /* Tailwind red-500 */
    font-weight: 500;
    font-size: 0.9rem;
    padding: 1rem;
    align-self: center;
    margin-left: auto;
    /* Push to right if flex */
}