:root {
    /* Light Theme */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --accent-blue: #3b82f6;
    --accent-blue-dim: #2563eb;
    --accent-orange: #f97316;
    --accent-green: #22c55e;
    --accent-red: #ef4444;
    --accent-purple: #8b5cf6;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

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

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

.app-container {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

/* Header */
.header {
    padding: 1rem 2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.logo-text h1 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.header-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: right;
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    overflow: hidden;
    min-height: 0; /* Important for grid children to not overflow */
}

/* Timeline Section */
.timeline-section {
    padding: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
}

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

.section-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.legend {
    display: flex;
    gap: 1.25rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.legend-dot.high { background: var(--accent-red); }
.legend-dot.medium { background: var(--accent-orange); }
.legend-dot.low { background: var(--accent-green); }

.timeline-container {
    flex: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-sm);
}

/* Chat Section */
.chat-section {
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}

.chat-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.chat-header h2 {
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.model-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    background: var(--accent-purple);
    color: white;
    border-radius: 4px;
    font-weight: 500;
}

.model-badge.not-loaded {
    background: var(--text-muted);
}

.model-status {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-orange);
}

.status-dot.ready {
    background: var(--accent-green);
}

.status-dot.not-loaded {
    background: var(--text-muted);
}

/* Model Download Panel */
.model-download-panel {
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.model-download-panel.hidden {
    display: none;
}

.download-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.875rem;
    line-height: 1.5;
}

.download-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--accent-blue);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.download-btn:hover:not(:disabled) {
    background: var(--accent-blue-dim);
}

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

.progress-container {
    margin-top: 1rem;
    display: none;
}

.progress-container.visible {
    display: block;
}

.progress-bar-bg {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    min-height: 0; /* Important for flex scrolling */
}

.message {
    max-width: 90%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.message.user {
    align-self: flex-end;
    background: var(--accent-blue);
    color: white;
    border-bottom-right-radius: 4px;
}

.message.assistant {
    align-self: flex-start;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.message.system {
    align-self: center;
    background: transparent;
    border: 1px dashed var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
}

.message.typing {
    display: flex;
    gap: 4px;
    padding: 1rem;
}

.message.typing .dot {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

.message.typing .dot:nth-child(1) { animation-delay: -0.32s; }
.message.typing .dot:nth-child(2) { animation-delay: -0.16s; }
.message.typing .dot:nth-child(3) { animation-delay: 0s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.chat-input-container {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    max-height: 200px;
    overflow-y: auto;
}

.demo-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-prompt {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.quick-prompt:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.quick-prompt:active {
    transform: translateY(0);
}

.quick-prompt.advanced {
    background: linear-gradient(135deg, #ede9fe, #e0e7ff);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.quick-prompt.advanced:hover {
    background: linear-gradient(135deg, #ddd6fe, #c7d2fe);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

/* Footer / Data Panel */
.data-panel {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 0.875rem 1.5rem;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
}

.data-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem;
    min-width: 160px;
}

.data-card-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.data-card-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.data-card-detail {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.125rem;
}

/* Timeline.js Overrides - Light Theme */
.vis-timeline {
    border: none !important;
    background: transparent !important;
    font-family: 'Outfit', sans-serif !important;
}

.vis-panel.vis-center {
    background: var(--bg-secondary) !important;
}

.vis-panel.vis-left {
    background: var(--bg-tertiary) !important;
}

.vis-labelset .vis-label {
    background: var(--bg-tertiary) !important;
    border-bottom: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    font-weight: 500 !important;
}

.vis-time-axis .vis-text {
    color: var(--text-secondary) !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.7rem !important;
}

.vis-item {
    border-radius: 6px !important;
    border: none !important;
    font-size: 0.8rem !important;
    box-shadow: var(--shadow-sm) !important;
}

.vis-item.priority-high {
    background: linear-gradient(135deg, var(--accent-red), #dc2626) !important;
    color: white !important;
}

.vis-item.priority-medium {
    background: linear-gradient(135deg, var(--accent-orange), #ea580c) !important;
    color: white !important;
}

.vis-item.priority-low {
    background: linear-gradient(135deg, var(--accent-green), #16a34a) !important;
    color: white !important;
}

.vis-item.vis-selected {
    box-shadow: 0 0 0 2px var(--accent-blue), var(--shadow-md) !important;
}

.vis-item .vis-item-content {
    padding: 4px 8px !important;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-text {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.loading-progress {
    margin-top: 0.375rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent-blue);
}

/* Scrollbar styling - Light */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Swipe indicator - hidden on desktop */
.swipe-indicator {
    display: none;
}

.swipe-hint {
    display: none;
}

/* ============================================
   MOBILE AGENDA VIEW
   ============================================ */

.agenda-view {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.agenda-tabs {
    display: flex;
    overflow-x: auto;
    gap: 2px;
    padding: 8px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    -webkit-overflow-scrolling: touch;
    flex-shrink: 0;
}

.agenda-tab {
    flex-shrink: 0;
    padding: 8px 12px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.agenda-tab:hover {
    background: var(--bg-primary);
}

.agenda-tab.active {
    background: var(--accent-blue);
    color: white;
}

.agenda-tab .tab-count {
    font-size: 0.7rem;
    background: rgba(0,0,0,0.1);
    padding: 2px 6px;
    border-radius: 10px;
}

.agenda-tab.active .tab-count {
    background: rgba(255,255,255,0.2);
}

.agenda-panels {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
}

.agenda-panel {
    display: none;
}

.agenda-panel.active {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agenda-item {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 12px;
    border-left: 4px solid var(--text-muted);
}

.agenda-item.priority-high {
    border-left-color: var(--accent-red);
}

.agenda-item.priority-medium {
    border-left-color: var(--accent-orange);
}

.agenda-item.priority-low {
    border-left-color: var(--accent-green);
}

.agenda-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.agenda-batch-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.agenda-priority {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.agenda-priority.priority-high {
    background: var(--accent-red);
    color: white;
}

.agenda-priority.priority-medium {
    background: var(--accent-orange);
    color: white;
}

.agenda-priority.priority-low {
    background: var(--accent-green);
    color: white;
}

.agenda-product {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.agenda-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.agenda-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Mobile hint label - hidden by default, shown on mobile */
.agenda-mobile-hint {
    display: none;
    text-align: center;
    padding: 16px 20px;
    margin: 16px 12px;
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    border: 1px solid var(--accent-blue);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet and below */
@media screen and (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr 320px;
    }
    
    .header-stats {
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
    .app-container {
        height: 100vh;
        height: 100dvh;
        height: calc(var(--vh, 1vh) * 100);
        max-height: 100vh;
        max-height: 100dvh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    /* Hide footer on mobile to give more space */
    .data-panel {
        display: none;
    }
    
    /* Swipeable carousel layout */
    .main-content {
        display: flex;
        flex-direction: row;
        flex: 1 1 0;
        min-height: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .main-content::-webkit-scrollbar {
        display: none;
    }
    
    /* Header adjustments - more compact */
    .header {
        padding: 0.4rem 0.75rem;
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
        flex-shrink: 0;
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .logo-text h1 {
        font-size: 0.95rem;
    }
    
    .logo-text span {
        font-size: 0.6rem;
    }
    
    .header-stats {
        width: 100%;
        justify-content: space-between;
        gap: 0.25rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-value {
        font-size: 0.8rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
    
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.25rem;
        margin-bottom: 0.4rem;
        flex-shrink: 0;
    }
    
    .section-title {
        font-size: 0.75rem;
    }
    
    .legend {
        gap: 0.4rem;
    }
    
    .legend-item {
        font-size: 0.55rem;
    }
    
    .legend-dot {
        width: 8px;
        height: 8px;
    }

    /* ==========================================
       LEFT PANEL: SCHEDULE/AGENDA - FULL SCREEN
       ========================================== */
    .timeline-section {
        flex: 0 0 100vw;
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        height: 100%;
        min-height: 0;
        padding: 0;
        display: block;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .timeline-container {
        height: auto;
        min-height: 100%;
        border-radius: 0;
        overflow: visible;
    }
    
    /* Agenda view - simple scrolling list */
    .agenda-view {
        display: block;
        height: auto;
        min-height: 100%;
        overflow: visible;
    }
    
    .agenda-tabs {
        position: sticky;
        top: 0;
        z-index: 10;
        flex-shrink: 0;
        padding: 8px;
        background: var(--bg-tertiary);
    }
    
    .agenda-tab {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .agenda-panels {
        display: block;
        height: auto;
        overflow: visible;
        padding: 8px;
    }
    
    .agenda-panel {
        display: none;
    }
    
    .agenda-panel.active {
        display: block;
    }
    
    .agenda-item {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .agenda-batch-id {
        font-size: 0.7rem;
    }
    
    .agenda-priority {
        font-size: 0.55rem;
        padding: 2px 5px;
    }
    
    .agenda-product {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .agenda-details {
        font-size: 0.7rem;
        gap: 10px;
    }
    
    .agenda-mobile-hint {
        display: block;
    }

    /* ==========================================
       RIGHT PANEL: CHAT - SPLIT VIEW (top/bottom)
       ========================================== */
    .chat-section {
        flex: 0 0 100vw;
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        height: 100%;
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-left: none;
    }
    
    .chat-header {
        padding: 0.5rem 0.75rem;
        flex-shrink: 0;
    }
    
    .chat-header h2 {
        font-size: 0.8rem;
    }
    
    .model-badge {
        font-size: 0.5rem;
    }
    
    .model-status {
        font-size: 0.65rem;
    }
    
    /* Chat messages - top half, scrollable */
    .chat-messages {
        flex: 1 1 50%;
        min-height: 0;
        padding: 0.5rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .message {
        max-width: 95%;
        font-size: 0.75rem;
        padding: 0.5rem 0.7rem;
    }
    
    /* Quick prompts - bottom half, scrollable */
    .chat-input-container {
        flex: 1 1 50%;
        min-height: 0;
        padding: 0.5rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-top: 1px solid var(--border-color);
    }
    
    .quick-prompts {
        gap: 0.25rem;
    }
    
    .quick-prompt {
        font-size: 0.6rem;
        padding: 0.3rem 0.5rem;
    }
    
    .demo-label {
        font-size: 0.55rem;
        margin-bottom: 0.3rem;
    }

    /* ==========================================
       SWIPE INDICATOR
       ========================================== */
    .swipe-indicator {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 6px;
        background: var(--bg-secondary);
        border-top: 1px solid var(--border-color);
        flex-shrink: 0;
    }
    
    .swipe-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border-color);
        transition: all 0.3s;
        cursor: pointer;
    }
    
    .swipe-dot.active {
        background: var(--accent-blue);
        transform: scale(1.2);
    }
    
    .swipe-hint {
        display: block;
        position: fixed;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.75);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.75rem;
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
        z-index: 100;
    }
    
    .swipe-hint.visible {
        opacity: 1;
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    .header {
        padding: 0.625rem 0.75rem;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .header-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 60px;
    }
    
    .timeline-container {
        min-height: 220px;
        max-height: 280px;
    }
    
    .chat-messages {
        min-height: 180px;
        max-height: 250px;
    }
    
    .quick-prompt {
        font-size: 0.65rem;
        padding: 0.35rem 0.6rem;
    }
    
    .data-card {
        min-width: 100px;
    }
}