:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --secondary-color: #6b7280;
    --secondary-hover: #4b5563;
    --accent-color: #8b5cf6;
    --accent-hover: #7c3aed;
    --background: #ffffff;
    --surface: #f9fafb;
    --border: #e5e7eb;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #0f172a;
        --surface: #1e293b;
        --border: #334155;
        --text-primary: #f1f5f9;
        --text-secondary: #cbd5e1;
        --text-muted: #64748b;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    font-display: swap;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    line-height: 1.6;
}

/* Main content paragraphs - justified */
.legal-content p,
.guide-section p,
.case-item p,
.stat-label {
    text-align: justify;
    text-justify: inter-word;
}

/* Keep these elements left-aligned */
.email-meta p,
.faq-item p,
.step p {
    text-align: left;
}

/* Keep these centered */
.empty-state p,
.info-text,
footer p {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    text-align: center;
    padding: 1.5rem 0 1rem;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 1.5em;
    height: 1.5em;
    color: var(--primary-color);
}

.icon-inline {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    margin-right: 0.25em;
}

.tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.header-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: center;
    min-height: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    contain: layout style;
    will-change: transform;
}

/* Main Content */
main {
    flex: 1;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    contain: layout style;
    min-height: calc(100vh - 200px);
}

/* Email Generator */
.email-generator {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-height: 180px;
}

.email-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.email-header-row h2 {
    margin: 0;
    font-size: 1.25rem;
    flex: 0 0 auto;
}

.email-display {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Expiration Timer */
.expiration-timer {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
    padding: 0 0.75rem;
    min-width: 150px;
    contain: layout style;
}

.expiration-timer strong {
    color: var(--text-secondary);
    font-weight: 600;
}

.expiration-timer.expired strong {
    color: var(--error);
}

.email-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

#emailAddress {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--background);
    color: var(--text-primary);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 48px;
    line-height: 1.5;
}

#copyBtn {
    min-height: 48px;
    min-width: 90px;
    align-self: stretch;
}

#emailAddress:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.email-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--background);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.email-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-success {
    background: #059669;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    background: #047857;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
}

.btn-warning-custom {
    background: #d97706;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}

.btn-warning-custom:hover {
    background: #b45309;
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Prevent button stretching on mobile */
@media (max-width: 768px) {
    .btn {
        max-width: 100%;
        white-space: nowrap;
    }
}

/* Inbox */
.inbox {
    background: var(--surface);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-height: 400px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    contain: layout style;
}

.inbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

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

.inbox-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.email-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow-y: auto;
    flex: 1;
}

.email-item {
    background: var(--background);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.email-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.email-item:hover .email-item-view {
    opacity: 1;
    transform: translateX(3px);
}

.email-item.unread {
    background: var(--surface);
}

.email-item.read {
    opacity: 0.85;
}

.email-item-content {
    flex: 1;
    min-width: 0;
}

.email-item-sender,
.email-item-subject {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.2rem;
}

.sender-label,
.subject-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 50px;
    font-weight: 500;
}

.sender-name,
.subject-text {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-left: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.email-item.unread .subject-text {
    font-weight: 600;
    color: var(--primary-color);
}

.email-item-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.email-item-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.email-item-view {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    opacity: 0;
    transition: all 0.2s;
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-secondary);
    min-height: 150px;
}

.empty-state p:first-child {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.empty-state-security {
    font-size: 0.85rem;
}

.footer-cookie-notice {
    font-size: 0.65rem;
    opacity: 0.4;
    margin-top: -0.5rem;
}

/* Email Viewer */
.email-viewer {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.email-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.email-header h3 {
    flex: 1;
}

.email-meta {
    background: var(--background);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.email-meta p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.email-meta p:last-child {
    margin-bottom: 0;
}

/* Tabs */
.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    background: var(--background);
    padding: 1.5rem;
    border-radius: 8px;
}

.tab-content.active {
    display: block;
}

.tab-content pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-all;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

#emailHtml {
    width: 100%;
    height: 400px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Toast */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--surface);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease-out;
    z-index: 1000;
    border: 1px solid var(--border);
    contain: layout style;
    will-change: transform, opacity;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-color: var(--success);
    color: var(--success);
}

.toast.error {
    border-color: var(--error);
    color: var(--error);
}

/* Refresh Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.btn.refreshing {
    pointer-events: none;
    opacity: 0.7;
    animation: spin 1s linear infinite;
}

/* Email viewer specific styles */
.email-viewer .tab-buttons {
    margin-bottom: 0;
    border-bottom: 2px solid var(--border);
}

.email-viewer .tab-content {
    border-radius: 0 0 8px 8px;
    margin-top: 0;
}

.email-viewer #textContent,
.email-viewer #headersContent {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}

.email-viewer #htmlContent {
    overflow: hidden;
}

#emailHtml,
#emailHtmlAdvanced {
    width: 100%;
    min-height: 400px;
    height: 600px;
    border: none;
    background: white;
    display: block;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px var(--border);
}

/* Advanced View */
.email-actions-bar {
    text-align: right;
    margin-top: 1rem;
}

.advanced-view {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* Legal Pages */
.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-notice {
    background: var(--surface);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.legal-emphasis {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--error);
    margin: 2rem 0;
}

.acceptance-notice {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--surface);
    border-radius: 8px;
    font-size: 1.1rem;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* Footer Legal Links */
footer .legal-links {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

footer .legal-links a {
    margin: 0 0.5rem;
}

/* Utilities */
.hidden {
    display: none !important;
}

.text-muted {
    color: var(--text-muted);
}

/* Info Row - Compact single row */
.info-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    flex-wrap: nowrap;
    margin: 0 auto;
    overflow-x: auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--surface);
    border-radius: 20px;
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.info-item:hover {
    transform: translateY(-1px);
}

.info-number {
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
}

.info-icon {
    font-size: 1.2rem;
}

.info-icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.info-text {
    color: var(--text-secondary);
    font-weight: 500;
}

.info-item.highlight {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.info-item.highlight .info-text {
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    padding: 1.5rem 0;
    width: 100%;
}

.faq h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: center;
    width: 100%;
}

.how-it-works h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.step {
    position: relative;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Use Cases Section */
.use-cases {
    padding: 1.5rem 0;
    width: 100%;
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

.case-item {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.case-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.case-item h4 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.case-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Privacy Guide Section */
.privacy-guide {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    width: 100%;
}

.privacy-guide h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.guide-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .guide-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.guide-section {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.guide-section h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.guide-section ul {
    list-style: none;
    padding: 0;
}

.guide-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.guide-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Stats Grid for About Page */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Accessibility improvements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        min-height: 100vh;
        padding: 0 0.5rem;
    }
    
    header {
        padding: 0.75rem 0;
    }
    
    header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
    
    .tagline {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .header-info {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    main {
        padding: 0.75rem 0;
        gap: 0.75rem;
    }
    
    .email-generator {
        padding: 0.75rem;
    }
    
    .email-header-row {
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .email-header-row h2 {
        font-size: 1.1rem;
        width: 100%;
    }
    
    .expiration-timer {
        font-size: 0.8rem;
        order: 2;
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0;
    }
    
    #changeBtn, #copyBtn {
        min-width: 100px;
        align-self: center;
    }
    
    .email-input-group {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    #emailAddress {
        min-width: auto;
        font-size: 0.9rem;
        padding: 0.6rem 0.75rem;
        flex: 1 1 100%;
    }
    
    #copyBtn {
        flex: 1 1 auto;
    }
    
    .inbox {
        padding: 0.75rem;
        max-height: none;
    }
    
    .inbox-header h2 {
        font-size: 1.1rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .btn-small {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    .email-item {
        padding: 0.4rem 0.6rem;
        gap: 0.5rem;
    }
    
    .sender-label,
    .subject-label {
        font-size: 0.75rem;
        min-width: 50px;
    }
    
    .sender-name,
    .subject-text {
        font-size: 0.85rem;
    }
    
    .email-item-time {
        font-size: 0.75rem;
    }
    
    .empty-state {
        padding: 1.5rem 1rem;
    }
    
    .empty-state p:first-child {
        font-size: 1.1rem;
    }
    
    footer {
        padding: 0.75rem 0;
        font-size: 0.8rem;
    }
    
    footer p {
        margin-bottom: 0.3rem;
    }
    
    .tab-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .info-row {
        gap: 0.5rem;
        justify-content: center;
        padding: 1rem;
        flex-wrap: wrap;
        overflow-x: visible;
    }
    
    .info-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        min-width: auto;
        flex: 0 1 auto;
    }
    
    .info-number {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
    
    .info-icon {
        font-size: 1rem;
    }
}