/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Daldrop Brand Colors - White & Teal/Cyan */
    --brand-white: #FFFFFF;
    --brand-teal: #00D4C8;
    --brand-teal-dark: #00B8AD;
    --brand-teal-light: #E6F9F8;
    
    /* Backgrounds - Clean, bright but functional */
    --bg-primary: #F5F8FA;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-hover: #F0F7F6;
    --bg-input: #F5F8FA;
    
    /* Text Colors - Dark for contrast */
    --text-primary: #1A2B3E;
    --text-secondary: #4A6572;
    --text-muted: #8AA3B0;
    --text-light: #FFFFFF;
    
    /* Status Colors - Subtle but clear */
    --accent-teal: #00D4C8;
    --accent-green: #2ECC71;
    --accent-red: #E74C3C;
    --accent-blue: #3498DB;
    --accent-yellow: #F1C40F;
    --accent-orange: #E67E22;
    --accent-purple: #9B59B6;
    
    /* Borders & Shadows */
    --border-color: #E8EDF2;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* DASHBOARD LAYOUT */
.dashboard {
    display: flex;
    height: 100vh;
    background: var(--bg-primary);
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 260px;
    background: var(--brand-white);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px 32px 12px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 24px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--brand-teal-light);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-text::after {
    content: "™";
    font-size: 10px;
    color: var(--brand-teal);
    vertical-align: super;
}

/* Navigation */
.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
    font-size: 14px;
}

.nav-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.nav-item.active {
    background: var(--brand-teal-light);
    color: var(--brand-teal-dark);
    font-weight: 600;
    border-left: 3px solid var(--brand-teal);
}

.nav-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.badge {
    margin-left: auto;
    background: var(--brand-teal);
    color: var(--text-light);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    min-width: 24px;
    text-align: center;
}

.badge.warning {
    background: var(--accent-red);
}

/* User Profile */
.user-profile {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-teal);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.user-role {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
    padding: 24px 32px 32px 32px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.main-content::-webkit-scrollbar {
    width: 6px;
}

.main-content::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

.main-content::-webkit-scrollbar-thumb {
    background: var(--brand-teal);
    border-radius: 10px;
}

/* HEADER */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-left h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.project-selector {
    background: var(--brand-white);
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.project-selector:hover {
    border-color: var(--brand-teal);
    box-shadow: var(--shadow-md);
}

.arrow {
    font-size: 12px;
    color: var(--text-muted);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-box {
    position: relative;
    background: var(--brand-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 16px 8px 40px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-box:focus-within {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3px rgba(0, 212, 200, 0.15);
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 14px;
    width: 220px;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    background: var(--brand-white);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.icon-btn:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--brand-teal);
    color: var(--text-light);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 212, 200, 0.3);
}

.btn-primary:hover {
    background: var(--brand-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 200, 0.35);
}

/* ===== KPI CARDS ===== */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.kpi-card {
    background: var(--brand-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.kpi-card:hover {
    border-color: var(--brand-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.kpi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.kpi-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-icon {
    font-size: 20px;
}

.kpi-value {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.kpi-value.critical {
    color: var(--accent-red);
}

.kpi-value.success {
    color: var(--brand-teal);
}

.kpi-value.warning {
    color: var(--accent-orange);
}

.kpi-footer {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trend {
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.trend.up {
    color: var(--brand-teal);
    background: var(--brand-teal-light);
}

.trend.down {
    color: var(--accent-red);
    background: rgba(231, 76, 60, 0.1);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-input);
    border-radius: 10px;
    margin: 10px 0 8px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-teal), var(--accent-blue));
    border-radius: 10px;
    transition: width 1s ease;
}

/* ===== CHARTS ===== */
.charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.chart-card {
    background: var(--brand-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.chart-card:hover {
    box-shadow: var(--shadow-md);
}

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

.card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.card-actions {
    display: flex;
    gap: 4px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--brand-teal-light);
    color: var(--brand-teal-dark);
    font-weight: 600;
}

.filter-btn:hover:not(.active) {
    background: var(--bg-hover);
    color: var(--text-primary);
}

/* Timeline Chart */
.timeline-chart {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-label {
    width: 36px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.timeline-bar {
    flex: 1;
    height: 28px;
    background: var(--bg-input);
    border-radius: 6px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.bar-segment {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.bar-segment.delivered {
    background: var(--brand-teal);
}

.bar-segment.in-transit {
    background: var(--accent-blue);
}

.bar-segment.pending {
    background: var(--accent-yellow);
}

.timeline-legend {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    justify-content: center;
    font-size: 12px;
    color: var(--text-secondary);
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.legend-dot.delivered {
    background: var(--brand-teal);
}
.legend-dot.in-transit {
    background: var(--accent-blue);
}
.legend-dot.pending {
    background: var(--accent-yellow);
}

/* Cleanroom Classifications */
.risk-badge {
    background: var(--brand-teal-light);
    color: var(--brand-teal-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.cleanroom-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 4px 0;
}

.cleanroom-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
    background: var(--bg-input);
    border-radius: 8px;
    transition: var(--transition);
}

.cleanroom-item:hover {
    background: var(--brand-teal-light);
}

.cleanroom-icon {
    font-size: 24px;
}

.cleanroom-info {
    flex: 1;
}

.cleanroom-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cleanroom-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cleanroom-bar {
    flex: 1;
    height: 6px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.cleanroom-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-teal), var(--accent-blue));
    border-radius: 10px;
    transition: width 1s ease;
}

.cleanroom-percent {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 40px;
    text-align: right;
}

/* ===== BOTTOM GRID ===== */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.feed-card, .table-card {
    background: var(--brand-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.feed-card:hover, .table-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-teal);
}

/* ===== LIVE FEED ===== */
.feed-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-teal-light);
    padding: 4px 12px 4px 8px;
    border-radius: 20px;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

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

.live-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feed-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 340px;
    overflow-y: auto;
    margin: 4px 0 12px 0;
    padding-right: 4px;
}

.feed-list::-webkit-scrollbar {
    width: 4px;
}

.feed-list::-webkit-scrollbar-track {
    background: var(--bg-input);
    border-radius: 10px;
}

.feed-list::-webkit-scrollbar-thumb {
    background: var(--brand-teal);
    border-radius: 10px;
}

.feed-item {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg-input);
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
    align-items: center;
}

.feed-item:hover {
    background: var(--brand-teal-light);
    transform: translateX(4px);
}

.feed-item.warning {
    border-left-color: var(--accent-red);
    background: rgba(231, 76, 60, 0.06);
}

.feed-item.warning:hover {
    background: rgba(231, 76, 60, 0.12);
}

.feed-time {
    display: flex;
    flex-direction: column;
    min-width: 54px;
    flex-shrink: 0;
}

.feed-time .time {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.feed-time .date {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.feed-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.feed-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.feed-text {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.feed-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.feed-action {
    color: var(--text-secondary);
}

.feed-location {
    color: var(--text-muted);
    font-size: 12px;
}

.feed-delay {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 12px;
}

.feed-action-status {
    color: var(--brand-teal);
    font-weight: 500;
    font-size: 12px;
}

.feed-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.btn-outline-full {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-full:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal-dark);
    background: var(--brand-teal-light);
}

/* ===== COMPONENTS TABLE ===== */
.table-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.table-actions .filter-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.table-actions .filter-btn.active {
    background: var(--brand-teal-light);
    color: var(--brand-teal-dark);
    font-weight: 600;
}

.table-actions .filter-btn:hover:not(.active) {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.btn-outline-sm {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 4px;
}

.btn-outline-sm:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal-dark);
    background: var(--brand-teal-light);
}

.table-wrapper {
    overflow-x: auto;
    margin: 4px 0 12px 0;
}

.components-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.components-table thead th {
    text-align: left;
    padding: 10px 12px 10px 0;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.components-table tbody td {
    padding: 12px 12px 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    vertical-align: middle;
}

.components-table tbody tr {
    transition: var(--transition);
}

.components-table tbody tr:hover {
    background: var(--bg-hover);
}

.components-table tbody tr.critical-row {
    background: rgba(231, 76, 60, 0.04);
}

.components-table tbody tr.critical-row:hover {
    background: rgba(231, 76, 60, 0.1);
}

.component-id {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 12px;
    background: var(--bg-input);
    padding: 3px 10px;
    border-radius: 4px;
    font-family: 'Inter', monospace;
}

.component-id.critical {
    background: rgba(231, 76, 60, 0.12);
    color: var(--accent-red);
}

.component-name {
    color: var(--text-primary);
    font-weight: 500;
    display: block;
}

.component-type {
    font-size: 11px;
    color: var(--text-muted);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.status-badge.in-transit {
    background: rgba(52, 152, 219, 0.12);
    color: var(--accent-blue);
}

.status-badge.delivered {
    background: var(--brand-teal-light);
    color: var(--brand-teal-dark);
}

.status-badge.delayed {
    background: rgba(231, 76, 60, 0.12);
    color: var(--accent-red);
    animation: blink-delay 1.5s ease-in-out infinite;
}

@keyframes blink-delay {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-badge.production {
    background: rgba(241, 196, 15, 0.15);
    color: var(--accent-yellow);
}

.delivery-date {
    display: block;
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
}

.delivery-date.delayed {
    color: var(--accent-red);
}

.delivery-status {
    font-size: 11px;
    color: var(--text-muted);
}

.delivery-status.delayed {
    color: var(--accent-red);
    font-weight: 600;
}

.delivery-status.completed {
    color: var(--brand-teal);
    font-weight: 600;
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--brand-teal-light);
    color: var(--brand-teal-dark);
}

.action-btn.urgent {
    color: var(--accent-red);
}

.action-btn.urgent:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--accent-red);
}

/* Table Footer */
.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.table-count {
    font-size: 12px;
    color: var(--text-secondary);
}

.table-pagination {
    display: flex;
    gap: 4px;
}

.page-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal-dark);
}

.page-btn.active {
    background: var(--brand-teal);
    border-color: var(--brand-teal);
    color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
    .bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .feed-list {
        max-height: 250px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .main-content {
        padding: 16px;
    }
    
    .table-actions {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .table-actions .filter-btn {
        font-size: 11px;
        padding: 2px 10px;
    }
    
    .component-id {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .status-badge {
        font-size: 10px;
        padding: 2px 10px;
    }
    
    .feed-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px;
    }
    
    .feed-time {
        flex-direction: row;
        gap: 8px;
        min-width: auto;
    }
    
    .header-left h1 {
        font-size: 20px;
    }
    
    .search-box input {
        width: 140px;
    }
    
    .kpi-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .top-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .header-right {
        flex-wrap: wrap;
    }
    
    .search-box {
        flex: 1;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .kpi-value {
        font-size: 24px;
    }
    
    .components-table {
        font-size: 11px;
    }
    
    .component-name {
        font-size: 12px;
    }
}