:root {
    --gta-cyan: #00d4ff;
    --gta-cyan-bright: #40e0ff;
    --gta-cyan-dim: #0090b3;
    --gta-cyan-dark: #003d4d;
    --gta-pink: #ff1493;
    --gta-pink-dim: #b30e68;
    --gta-gold: #ffd700;
    --gta-gold-dim: #b39700;
    --gta-green: #00ff88;
    --gta-red: #ff4444;
    --gta-purple: #a855f7;
    --bg-dark: #0d0d0d;
    --bg-card: #151515;
    --bg-light: #1a1a1a;
    --bg-lighter: #222222;
    --border-color: rgba(0, 212, 255, 0.2);
    --border-bright: rgba(0, 212, 255, 0.45);
    --text-primary: #e8e8e8;
    --text-secondary: rgba(232, 232, 232, 0.8);
    --text-muted: rgba(232, 232, 232, 0.5);
    --glow-sm: 0 0 5px rgba(0, 212, 255, 0.3);
    --glow-md: 0 0 10px rgba(0, 212, 255, 0.3);
    --glow-lg: 0 0 20px rgba(0, 212, 255, 0.2);
    --glow-pink: 0 0 10px rgba(255, 20, 147, 0.3);
}

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Rajdhani:wght@400;500;600;700&display=swap');

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

html, body {
    height: 100%;
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 212, 255, 0.01) 2px,
            rgba(0, 212, 255, 0.01) 4px
        );
    pointer-events: none;
    z-index: 9999;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
    background: var(--gta-cyan-dim);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gta-cyan); }

.font-mono { font-family: 'Share Tech Mono', monospace; }

/* Header */
#app-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #0d0d0d 0%, rgba(13,13,13,0.97) 100%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-logo {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.4rem;
    color: var(--gta-cyan);
    text-shadow: var(--glow-md);
    white-space: nowrap;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.app-logo span {
    color: var(--gta-pink);
    text-shadow: var(--glow-pink);
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}
.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.2s, text-shadow 0.2s;
}

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

.tab-btn.active {
    color: var(--gta-cyan);
    text-shadow: var(--glow-sm);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gta-cyan), var(--gta-pink));
    box-shadow: var(--glow-sm);
}

/* Mobile hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-color);
    color: var(--gta-cyan);
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 4px;
}

/* Main content */
#main-content {
    margin-top: 52px;
    min-height: calc(100vh - 52px);
    padding: 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 110px;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
    border-color: var(--border-bright);
    box-shadow: var(--glow-sm);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gta-cyan-bright);
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

/* Badges */
.badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-cyan { background: var(--gta-cyan-dark); color: var(--gta-cyan); border: 1px solid var(--gta-cyan-dim); }
.badge-pink { background: rgba(255, 20, 147, 0.15); color: var(--gta-pink); border: 1px solid var(--gta-pink-dim); }
.badge-gold { background: rgba(255, 215, 0, 0.15); color: var(--gta-gold); border: 1px solid var(--gta-gold-dim); }
.badge-green { background: rgba(0, 255, 136, 0.1); color: var(--gta-green); border: 1px solid rgba(0, 255, 136, 0.3); }
.badge-red { background: rgba(255, 68, 68, 0.15); color: var(--gta-red); border: 1px solid rgba(255, 68, 68, 0.3); }
.badge-purple { background: rgba(168, 85, 247, 0.15); color: var(--gta-purple); border: 1px solid rgba(168, 85, 247, 0.3); }

/* Search inputs */
.search-box {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--gta-cyan);
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-box::placeholder { color: var(--text-muted); }
.search-box:focus {
    border-color: var(--gta-cyan-dim);
    box-shadow: var(--glow-md);
}

/* Filter buttons */
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.filter-btn {
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.filter-btn:hover { border-color: var(--border-bright); color: var(--text-secondary); }
.filter-btn.active {
    background: var(--gta-cyan-dark);
    border-color: var(--gta-cyan-dim);
    color: var(--gta-cyan);
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
}

.data-table th {
    text-align: left;
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-bright);
    color: var(--gta-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.data-table td {
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.data-table tr:hover td {
    background: rgba(0, 212, 255, 0.03);
    color: var(--text-primary);
}

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }

/* Section headers */
.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gta-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gta-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1rem 0 0.5rem;
}

/* Stat bar */
.stat-bar-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    width: 40px;
    text-align: right;
    font-weight: 700;
    color: var(--text-muted);
}

.stat-bar {
    flex: 1;
    height: 14px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    transition: width 0.5s ease;
    border-radius: 1px;
}

.stat-value {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    width: 28px;
    text-align: left;
    color: var(--text-muted);
}

/* Map styles */
#map-container {
    position: relative;
    isolation: isolate;
    height: calc(100vh - 120px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
}

.map-sidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    max-height: calc(100% - 20px);
    overflow-y: auto;
    width: 240px;
    backdrop-filter: blur(10px);
}

.map-sidebar h3 {
    color: var(--gta-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.map-filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.map-filter-label:hover { color: var(--text-primary); }

.map-filter-label input[type="checkbox"] {
    accent-color: var(--gta-cyan);
    width: 14px;
    height: 14px;
}

.map-filter-count {
    margin-left: auto;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Leaflet popup override */
.leaflet-popup-content-wrapper {
    background: rgba(13, 13, 13, 0.97) !important;
    border: 1px solid var(--border-bright) !important;
    border-radius: 8px !important;
    color: var(--text-primary) !important;
    box-shadow: var(--glow-md) !important;
}

.leaflet-popup-tip { background: rgba(13, 13, 13, 0.97) !important; }
.leaflet-popup-content { font-family: 'Rajdhani', sans-serif !important; font-size: 0.95rem !important; line-height: 1.5 !important; }
.leaflet-popup-content b { color: var(--gta-cyan-bright); font-size: 1.05rem; }
.leaflet-popup-close-button { color: var(--gta-cyan) !important; }

/* Map search results */
.map-results-header {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--gta-gold);
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.25rem;
}

.map-result-item {
    display: flex;
    align-items: center;
    padding: 0.35rem 0.4rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: background 0.15s;
}

.map-result-item:hover {
    background: var(--bg-lighter);
}

.map-result-name {
    flex: 1;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.map-result-cat {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.map-results-more {
    text-align: center;
    padding: 0.3rem;
    color: var(--text-muted);
    font-size: 0.75rem;
}

#map-search-results {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 0.5rem;
}

.map-filter-actions {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.map-action-btn {
    flex: 1;
    padding: 0.25rem 0.5rem;
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    transition: all 0.15s;
}

.map-action-btn:hover {
    border-color: var(--border-bright);
    color: var(--gta-cyan);
}

/* Heist cards */
.heist-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.heist-card:hover {
    border-color: var(--gta-pink-dim);
    box-shadow: var(--glow-pink);
}

.heist-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gta-cyan-bright);
    margin-bottom: 0.3rem;
}

.heist-payout {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: var(--gta-green);
    margin-bottom: 0.5rem;
}

.heist-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.heist-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.heist-tips {
    background: var(--bg-light);
    border-radius: 4px;
    border-left: 3px solid var(--gta-gold);
    padding: 0.75rem;
}

.heist-tips-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gta-gold);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.heist-tips-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Money guide cards */
.money-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.money-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.15);
}

.money-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.money-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gta-cyan-bright);
}

.money-income {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    color: var(--gta-green);
    white-space: nowrap;
}

.money-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Property cards */
.property-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.property-card:hover {
    border-color: var(--gta-gold-dim);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.property-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gta-cyan-bright);
    margin-bottom: 0.25rem;
}

.property-cost {
    font-family: 'Share Tech Mono', monospace;
    color: var(--gta-green);
    font-size: 0.95rem;
}

.property-info {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0.5rem 0;
}

.property-features {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

/* Collectible cards */
.collectible-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.collectible-card:hover {
    border-color: var(--gta-purple);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.15);
}

.collectible-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gta-cyan-bright);
    margin-bottom: 0.25rem;
}

.collectible-count {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    color: var(--gta-gold);
    margin-bottom: 0.5rem;
}

.collectible-reward {
    font-size: 0.9rem;
    color: var(--gta-green);
    margin-bottom: 0.5rem;
}

.collectible-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Progress bar for collectibles */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gta-cyan), var(--gta-pink));
    border-radius: 4px;
    transition: width 0.3s;
}

/* Sub-tab navigation */
.sub-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.sub-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
}

.sub-tab:hover { color: var(--text-secondary); }
.sub-tab.active {
    color: var(--gta-pink);
    border-bottom-color: var(--gta-pink);
}

/* Loading spinner */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--text-muted);
    font-family: 'Share Tech Mono', monospace;
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
    0% { content: '.'; }
    33% { content: '..'; }
    66% { content: '...'; }
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-family: 'Share Tech Mono', monospace;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* Highlight for search */
mark {
    background: rgba(255, 20, 147, 0.3);
    color: var(--gta-pink);
    padding: 0 2px;
    border-radius: 2px;
}

/* Overflow helper */
.overflow-x-auto {
    overflow-x: auto;
}

/* Spacing utilities */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.p-2 { padding: 0.5rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

/* Support / Buy Me a Coffee button */
.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--gta-gold-dim);
    border-radius: 16px;
    color: var(--gta-gold);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    margin-right: 0.5rem;
}

.support-btn:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: var(--gta-gold);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

/* Sticky footer ad */
#ad-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 0.97));
    border-top: 1px solid var(--border-color);
    padding: 6px 0;
    backdrop-filter: blur(4px);
}

.ad-container {
    text-align: center;
    overflow: hidden;
}

.ad-container ins {
    background: transparent !important;
}

.ad-close {
    position: absolute;
    top: 2px;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.ad-close:hover {
    color: var(--gta-red);
}

/* News placeholder */
.news-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.news-date {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .tab-nav {
        display: none;
        position: fixed;
        top: 52px;
        left: 0; right: 0;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 0.5rem;
        z-index: 999;
        max-height: 60vh;
        overflow-y: auto;
    }

    .tab-nav.open { display: flex; }

    .tab-btn {
        text-align: left;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .tab-btn.active::after { display: none; }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    #map-container { height: calc(100vh - 160px); }

    .map-sidebar {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0; right: 0;
        width: 100%;
        max-height: 40vh;
        border-radius: 16px 16px 0 0;
        transform: translateY(calc(100% - 44px));
        transition: transform 0.3s;
    }

    .map-sidebar.open { transform: translateY(0); }

    .map-sidebar-handle {
        display: block;
        width: 40px;
        height: 4px;
        background: var(--gta-cyan-dim);
        border-radius: 2px;
        margin: 0 auto 0.75rem;
    }

    #main-content { padding: 0.5rem; padding-bottom: 70px; }
}

@media (max-width: 480px) {
    .app-logo { font-size: 1rem; }
    .header-inner { padding: 0.4rem 0.5rem; }
    .support-btn { font-size: 0.7rem; padding: 0.2rem 0.5rem; }

    .ad-container ins {
        width: 320px !important;
        height: 50px !important;
    }
}
