/* CSS Variables */
:root {
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --accent-primary: #663399; /* Rebecca Purple */
    --accent-secondary: #8b5fbf;
    --accent-light: #a77dd6;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #333333;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --radius: 8px;
    --radius-lg: 12px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Wallet Modal Styles */
.wallet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.wallet-modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    min-width: 400px;
    max-width: 500px;
}

.wallet-modal-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.wallet-modal-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.wallet-option:hover {
    background: var(--accent-primary);
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
}

.wallet-option span {
    font-size: 1.5rem;
}

/* Console Link Styles */
.console-link {
    color: var(--accent-light);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.console-link:hover {
    color: var(--accent-secondary);
}

/* Force desktop layout - stronger rules */
@media (min-width: 769px) {
    body {
        min-width: 1200px !important;
        width: 100% !important;
    }
    
    .container {
        max-width: 1400px !important;
        padding: 0 2rem !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .main {
        padding: 3rem 0 !important;
        width: 100% !important;
    }
    
    .hero {
        padding: 3rem 2rem !important;
        max-width: 900px !important;
        margin: 0 auto 4rem auto !important;
        width: 100% !important;
    }
    
    .token-creator {
        max-width: 1200px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .creator-card {
        width: 100% !important;
    }
    
    .token-form {
        padding: 2.5rem !important;
        width: 100% !important;
    }
    
    .form-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
        width: 100% !important;
    }
    
    .submit-row {
        flex-direction: row !important;
        gap: 2rem !important;
        width: 100% !important;
        align-items: center !important;
    }
    
    .header-content {
        flex-direction: row !important;
        width: 100% !important;
    }
    
    .wallet-status {
        min-width: 200px !important;
    }
}

/* Main content area */
.main {
    padding: 3rem 0;
    min-height: calc(100vh - 120px);
}

/* Header */
.header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.network-badge {
    background: var(--accent-primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: background-color 0.2s ease;
}

.network-badge:hover {
    background: var(--accent-secondary);
}

.network-badge.clickable {
    position: relative;
}

.network-arrow {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
}

.network-badge.open .network-arrow {
    transform: rotate(180deg);
}

.network-dropdown {
    position: relative;
}

.network-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    margin-top: 0.25rem;
    overflow: hidden;
}

.network-menu.hidden {
    display: none;
}

.network-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    width: 100%;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.network-option:hover {
    background: var(--bg-tertiary);
}

.network-option.active {
    background: var(--accent-primary);
    color: white;
}

.network-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

/* Wallet Styling - Match root exactly */
.wallet-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wallet-container {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.75rem;
}

.wallet-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.wallet-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.wallet-address-full {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.6875rem;
    color: var(--text-primary);
    word-break: break-all;
    margin-bottom: 0.25rem;
}

.wallet-balance {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.wallet-bottom-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
    width: 100%;
}

.wallet-network-dropdown {
    position: relative;
}

.wallet-network-dropdown .network-menu {
    min-width: 120px;
    width: max-content;
}

.network-badge-small {
    background: var(--accent-primary);
    color: white;
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius);
    font-size: 0.6rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.1875rem;
    transition: background-color 0.2s ease;
}

.network-badge-small:hover {
    background: var(--accent-secondary);
}

.network-badge-small .network-arrow {
    font-size: 0.5rem;
}

.wallet-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-wallet-action {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.875rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.btn-wallet-action:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Token Creator */
.token-creator {
    max-width: 1200px;
    margin: 0 auto;
}

.creator-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}


/* Forms */
.token-form {
    padding: 2.5rem;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

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

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

.form-group label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.form-group input {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.75rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(102, 51, 153, 0.1);
}

.form-group small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Feature Toggles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}

.feature-toggle {
    position: relative;
}

.feature-toggle input[type="checkbox"] {
    display: none;
}

.feature-toggle label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.feature-toggle label:hover {
    border-color: var(--accent-primary);
}

.feature-toggle input:checked + label {
    background: rgba(102, 51, 153, 0.1);
    border-color: var(--accent-primary);
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
    background: var(--border-color);
    border-radius: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: all 0.2s ease;
}

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

.feature-toggle input:checked + label .toggle-switch::after {
    transform: translateX(20px);
}

.toggle-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.toggle-content strong {
    color: var(--text-primary);
}

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

/* Fee Configuration */
.fee-config {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(102, 51, 153, 0.05);
    border: 1px solid rgba(102, 51, 153, 0.2);
    border-radius: var(--radius);
}

.fee-config.hidden {
    display: none;
}

/* Minting Configuration */
.minting-config {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius);
}

.minting-config.hidden {
    display: none;
}

/* Advanced Features */
.advanced-features {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.advanced-features.hidden {
    display: none;
}

/* Advanced Subsections */
.advanced-subsection {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advanced-subsection:last-child {
    margin-bottom: 0;
}

.advanced-subsection h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

/* Toggle Advanced Button */
.btn-toggle-advanced {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-toggle-advanced:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

.toggle-icon {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.btn-toggle-advanced.expanded .toggle-icon {
    transform: rotate(180deg);
}

/* Section Headers with Controls */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h4 {
    margin: 0;
    flex: 1;
    min-width: fit-content;
}

.section-header .feature-toggle {
    margin: 0;
}

.section-header .btn-toggle-advanced {
    flex-shrink: 0;
}

/* Responsive adjustments for section headers */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .section-header .feature-toggle,
    .section-header .btn-toggle-advanced {
        width: 100%;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    line-height: 1;
}

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

.btn-primary {
    background: var(--accent-primary);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: var(--accent-secondary);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
}

.btn-loader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loader.hidden {
    display: none;
}

.btn-text.hidden {
    display: none;
}

/* Spinner */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Actions */
.form-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.fee-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    background: var(--bg-tertiary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.fee-label {
    color: var(--text-secondary);
}

.fee-amount {
    color: var(--accent-primary);
    font-weight: 600;
    font-family: 'Monaco', 'Menlo', monospace;
}

/* Created Tokens */
.created-tokens {
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem;
}

.created-tokens h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.tokens-list {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.token-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.token-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.token-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.token-address {
    font-family: 'Monaco', 'Menlo', monospace;
    background: var(--bg-tertiary);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-info-centered {
    color: #888888;
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.footer-info-centered p {
    margin: 0.5rem 0;
}

.footer-info-centered a {
    color: var(--accent-light);
    text-decoration: none;
    word-break: break-all;
}

.footer-info-centered a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.footer-info {
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

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

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
}

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

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

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

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

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

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-message {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .main {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .wallet-status {
        width: 100%;
        justify-content: center;
    }
    
    .wallet-container {
        width: 100%;
    }
    
    .card-header {
        padding: 1.5rem;
    }
    
    .token-form {
        padding: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .submit-row {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .fee-display {
        text-align: center;
        justify-content: center;
    }
    
    .tokens-list {
        grid-template-columns: 1fr;
    }
    
    .token-card {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

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

.text-center {
    text-align: center;
}

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

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

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

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

/* Transaction Console */
.transaction-console {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin: 2rem auto 0;
    overflow: hidden;
    max-width: 1200px;
}

.console-header {
    background: var(--bg-tertiary);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.console-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.console-controls {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    border-radius: var(--radius);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-small:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.console-content {
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.4;
    background: var(--bg-primary);
}

.console-line {
    padding: 0.25rem 0;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.console-line:last-child {
    border-bottom: none;
}

.timestamp {
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
    min-width: 80px;
}

.message {
    color: var(--text-primary);
    word-break: break-all;
}

.console-line.info .message {
    color: #3b82f6;
}

.console-line.success .message {
    color: #22c55e;
}

.console-line.error .message {
    color: #ef4444;
}

.console-line.warning .message {
    color: #f59e0b;
}

.console-line.tx .message {
    color: #8b5cf6;
}