/**
 * Liquidity Hub - Styles
 * Token Pool Network Visualizer Stylesheet
 */

:root {
    /* Token colors will be injected via PHP */
    --bg-deep: #0a0a0f;
    --bg-surface: #12121a;
    --bg-elevated: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --gradient-mesh: radial-gradient(ellipse at 20% 0%, rgba(155, 93, 229, 0.15) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 20%, rgba(0, 187, 249, 0.1) 0%, transparent 40%),
                     radial-gradient(ellipse at 40% 80%, rgba(241, 91, 181, 0.1) 0%, transparent 40%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated Background */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--bg-deep);
}

.bg-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

/* Floating Particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 10;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.logo-container {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.header-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--color-UBQTX) 0%, var(--color-NDAOX) 50%, var(--color-NDAO) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px var(--glow-UBQTX)); }
    33% { filter: drop-shadow(0 0 30px var(--glow-NDAOX)); }
    66% { filter: drop-shadow(0 0 25px var(--glow-NDAO)); }
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-surface);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 10px 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

.stat-item:last-child::after {
    display: none;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-UBQT), var(--color-UBQTX));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 5px;
}

/* Network/Hero Section */
.network-section {
    margin: 40px 0;
    padding: 40px;
    background: var(--bg-surface);
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--color-UBQTX), var(--color-NDAO));
    border-radius: 2px;
}

/* Hero Image Container */
.hero-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: radial-gradient(ellipse at center, var(--bg-elevated) 0%, var(--bg-deep) 100%);
    border-radius: 16px;
    overflow: hidden;
}

.hero-image {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Token Legend */
.token-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-elevated);
    border-radius: 30px;
    border: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.legend-item:hover {
    transform: translateY(-2px);
}

.legend-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
    border: 2px solid currentColor;
}

.legend-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Token Section Headers */
.token-section {
    margin: 40px 0;
    padding: 40px;
    background: var(--bg-surface);
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
}

.token-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.token-section-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid currentColor;
    box-shadow: 0 0 20px currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
}

.token-section-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.token-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.token-section-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: auto;
}

/* Pools Table */
.pools-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.pools-table thead {
    background: var(--bg-deep);
}

.pools-table th {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.pools-table th:last-child {
    text-align: center;
}

.pool-row {
    background: var(--bg-elevated);
    transition: all 0.3s ease;
}

.pool-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pool-row td {
    padding: 16px 12px;
    border-bottom: 1px solid var(--border-subtle);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.col-pair .token-pair {
    display: flex;
    align-items: center;
    gap: 10px;
}

.col-pair .token-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid;
    background: var(--bg-deep);
    margin-right: -8px;
}

.col-pair .token-icon:last-of-type {
    margin-right: 0;
}

.col-pair .token-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.col-pair .token-icon-text {
    font-size: 0.6rem;
    font-weight: 700;
}

.col-pair .pair-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 8px;
}

.pool-id-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pool-id-link:hover {
    color: var(--color-UBQTX);
}

.col-tvl {
    color: var(--color-NFTP);
    font-weight: 600;
}

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

.col-positions {
    font-weight: 600;
}

.col-status .health-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
}

.col-status .health-badge.loading {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.col-status .health-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

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

.add-btn {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--color-UBQTX) 0%, var(--color-NDAO) 100%);
    color: var(--bg-deep);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.add-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 245, 212, 0.3);
}

/* Responsive table */
@media (max-width: 900px) {
    .pools-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* CTA Banner */
.cta-banner {
    margin: 60px 0;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.2) 0%, rgba(0, 187, 249, 0.2) 50%, rgba(241, 91, 181, 0.2) 100%);
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--color-NFTP), var(--color-NDAO), var(--color-UBQTX));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--color-NDAO) 0%, var(--color-NDAOX) 100%);
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(241, 91, 181, 0.4);
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(241, 91, 181, 0.5);
}

/* Health Legend */
.health-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-surface);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}

.health-legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-elevated);
    border-radius: 10px;
}

.health-legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.health-legend-text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.health-legend-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Loading States */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    position: relative;
}

.loading-spinner::before,
.loading-spinner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
}

.loading-spinner::before {
    border-top-color: var(--color-UBQTX);
    animation: spin 1s linear infinite;
}

.loading-spinner::after {
    border-bottom-color: var(--color-NDAO);
    animation: spin 1.5s linear infinite reverse;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.empty-state-text {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-surface);
    border-radius: 24px 24px 0 0;
    border: 1px solid var(--border-subtle);
    border-bottom: none;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--color-NDAOX);
    letter-spacing: 0.2em;
}

/* Floating Legend */
.floating-legend {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.legend-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.legend-toggle:hover {
    background: var(--bg-surface);
    border-color: var(--color-UBQTX);
    box-shadow: 0 4px 25px rgba(0, 245, 212, 0.2);
}

.legend-toggle svg {
    color: var(--color-UBQTX);
}

.legend-panel {
    position: absolute;
    right: 0;
    top: 55px;
    width: 280px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.floating-legend.open .legend-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.legend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.legend-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.legend-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
    display: none;
}

.legend-close:hover {
    color: var(--text-primary);
}

/* Legend Tabs */
.legend-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.legend-tab {
    flex: 1;
    padding: 10px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.legend-tab:hover {
    background: var(--bg-deep);
    color: var(--text-primary);
}

.legend-tab.active {
    background: linear-gradient(135deg, var(--color-UBQTX), var(--color-NDAO));
    border-color: transparent;
    color: var(--bg-deep);
}

.legend-tab-content {
    display: none;
}

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

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--bg-elevated);
    border-radius: 8px;
}

.legend-status-item .legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.legend-info strong {
    font-size: 0.85rem;
    font-weight: 600;
}

.legend-info span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Position bubble with status color */
.col-positions {
    font-weight: 600;
}

.position-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
}

/* TVL with status color */
.tvl-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.tvl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Mobile Legend Popup */
@media (max-width: 768px) {
    .floating-legend {
        right: 15px;
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .legend-toggle-text {
        display: none;
    }

    .legend-toggle {
        padding: 14px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }

    .legend-panel {
        position: fixed;
        right: 15px;
        bottom: 80px;
        top: auto;
        width: calc(100vw - 30px);
        max-width: 320px;
        max-height: 70vh;
        overflow-y: auto;
    }

    .legend-close {
        display: block;
    }
}

/* Responsive */
@media (max-width: 1600px) {
    .pools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .pools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 768px) {
    .main-container {
        padding: 15px;
    }

    .header {
        padding: 40px 15px;
    }

    .stats-bar {
        gap: 20px;
        padding: 20px;
    }

    .stat-item {
        padding: 10px 15px;
    }

    .stat-item::after {
        display: none;
    }

    .network-section,
    .token-section {
        padding: 20px;
    }

    .hero-image-container {
        padding: 15px;
    }

    .hero-image {
        max-height: 300px;
    }

    .pools-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 30px 20px;
    }

    .token-section-header {
        flex-wrap: wrap;
    }

    .token-section-subtitle {
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
    }

    /* Mobile-friendly table - card layout */
    .pools-table {
        display: block;
    }

    .pools-table thead {
        display: none;
    }

    .pools-table tbody {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .pool-row {
        display: flex;
        flex-direction: column;
        padding: 16px;
        border-radius: 12px;
        border: 1px solid var(--border-subtle);
        gap: 12px;
    }

    .pool-row td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-subtle);
    }

    .pool-row td:last-child {
        border-bottom: none;
    }

    .pool-row td::before {
        content: attr(data-label);
        font-family: 'Orbitron', sans-serif;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .pool-row td.col-pair {
        justify-content: center;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .pool-row td.col-pair::before {
        display: none;
    }

    .pool-row td.col-action {
        justify-content: center;
        padding-top: 12px;
    }

    .pool-row td.col-action::before {
        display: none;
    }

    .col-pair .token-pair {
        flex-direction: column;
        text-align: center;
    }

    .col-pair .token-icon {
        margin-right: 0;
    }

    .add-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}
