/**
 * Estilos públicos para CMC100 Tracker
 */

/* Variables CSS */
:root {
    --cmc100-primary: #0073aa;
    --cmc100-secondary: #646970;
    --cmc100-success: #00a32a;
    --cmc100-warning: #dba617;
    --cmc100-error: #d63638;
    --cmc100-bg-light: #f6f7f7;
    --cmc100-border: #dcdcde;
    --cmc100-text: #1d2327;
    --cmc100-text-light: #646970;
    --cmc100-radius: 6px;
    --cmc100-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Reset y base */
.cmc100-dashboard * {
    box-sizing: border-box;
}

.cmc100-dashboard {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--cmc100-text);
}

/* Header del dashboard */
.cmc100-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cmc100-border);
}

.cmc100-dashboard-header h2 {
    margin: 0;
    color: var(--cmc100-text);
    font-size: 28px;
    font-weight: 600;
}

.dashboard-actions {
    display: flex;
    gap: 12px;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: var(--cmc100-radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
}

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

.btn-primary:hover {
    background-color: #005a87;
    border-color: #005a87;
    color: white;
}

.btn-secondary {
    background-color: var(--cmc100-bg-light);
    color: var(--cmc100-text);
    border-color: var(--cmc100-border);
}

.btn-secondary:hover {
    background-color: #f0f0f1;
    border-color: #c3c4c7;
    color: var(--cmc100-text);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}

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

/* Selector de cartera */
.portfolio-selector {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border: 1px solid var(--cmc100-border);
    border-radius: var(--cmc100-radius);
    box-shadow: var(--cmc100-shadow);
}

.portfolio-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--cmc100-text);
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--cmc100-border);
    border-radius: var(--cmc100-radius);
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--cmc100-primary);
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

/* Métricas principales */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background: white;
    padding: 24px;
    border: 1px solid var(--cmc100-border);
    border-radius: var(--cmc100-radius);
    box-shadow: var(--cmc100-shadow);
    text-align: center;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--cmc100-primary);
    margin-bottom: 8px;
    display: block;
}

.metric-label {
    font-size: 14px;
    color: var(--cmc100-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

.metric-change {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.metric-change.positive {
    color: var(--cmc100-success);
    background-color: rgba(0, 163, 42, 0.1);
}

.metric-change.negative {
    color: var(--cmc100-error);
    background-color: rgba(214, 54, 56, 0.1);
}

/* Gráficos */
.chart-container {
    background: white;
    padding: 24px;
    border: 1px solid var(--cmc100-border);
    border-radius: var(--cmc100-radius);
    box-shadow: var(--cmc100-shadow);
    margin-bottom: 30px;
}

.chart-container h4 {
    margin: 0 0 20px 0;
    color: var(--cmc100-text);
    font-size: 18px;
    font-weight: 600;
}

/* Sección de holdings */
.holdings-section {
    background: white;
    border: 1px solid var(--cmc100-border);
    border-radius: var(--cmc100-radius);
    box-shadow: var(--cmc100-shadow);
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--cmc100-border);
}

.section-header h4 {
    margin: 0;
    color: var(--cmc100-text);
    font-size: 18px;
    font-weight: 600;
}

.holdings-table-container {
    overflow-x: auto;
}

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

.table th {
    background-color: var(--cmc100-bg-light);
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: var(--cmc100-text);
    border-bottom: 1px solid var(--cmc100-border);
}

.table td {
    padding: 16px 12px;
    border-bottom: 1px solid var(--cmc100-border);
    vertical-align: middle;
}

.table tbody tr:hover {
    background-color: rgba(0, 115, 170, 0.02);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* Estados vacíos */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border: 1px solid var(--cmc100-border);
    border-radius: var(--cmc100-radius);
    box-shadow: var(--cmc100-shadow);
}

.empty-state-content h3 {
    margin: 0 0 16px 0;
    color: var(--cmc100-text);
    font-size: 24px;
    font-weight: 600;
}

.empty-state-content p {
    margin: 0 0 24px 0;
    color: var(--cmc100-text-light);
    font-size: 16px;
}

/* Login requerido */
.cmc100-login-required {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border: 1px solid var(--cmc100-border);
    border-radius: var(--cmc100-radius);
    box-shadow: var(--cmc100-shadow);
}

.login-message h3 {
    margin: 0 0 16px 0;
    color: var(--cmc100-text);
    font-size: 24px;
    font-weight: 600;
}

.login-message p {
    margin: 0 0 24px 0;
    color: var(--cmc100-text-light);
    font-size: 16px;
}

.login-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Modales */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: var(--cmc100-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--cmc100-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h4 {
    margin: 0;
    color: var(--cmc100-text);
    font-size: 18px;
    font-weight: 600;
}

.close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--cmc100-text-light);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--cmc100-border);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Formularios */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--cmc100-text);
}

.form-group input[type="checkbox"] {
    margin-right: 8px;
}

.form-text {
    margin-top: 4px;
    font-size: 12px;
    color: var(--cmc100-text-light);
}

/* Sugerencias de autocompletado */
.suggestions-dropdown {
    position: relative;
    background: white;
    border: 1px solid var(--cmc100-border);
    border-top: none;
    border-radius: 0 0 var(--cmc100-radius) var(--cmc100-radius);
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid var(--cmc100-border);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: var(--cmc100-bg-light);
}

.suggestion-item.selected {
    background-color: var(--cmc100-primary);
    color: white;
}

/* Widgets */
.cmc100-index-widget {
    background: white;
    border: 1px solid var(--cmc100-border);
    border-radius: var(--cmc100-radius);
    padding: 20px;
    box-shadow: var(--cmc100-shadow);
}

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

.widget-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--cmc100-text);
}

.index-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.current-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--cmc100-primary);
}

.change-24h {
    font-size: 14px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.change-24h.positive {
    color: var(--cmc100-success);
    background-color: rgba(0, 163, 42, 0.1);
}

.change-24h.negative {
    color: var(--cmc100-error);
    background-color: rgba(214, 54, 56, 0.1);
}

.widget-footer {
    margin-top: 16px;
    text-align: center;
}

.widget-footer small {
    color: var(--cmc100-text-light);
    font-size: 12px;
}

/* Precio de crypto */
.cmc100-crypto-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border: 1px solid var(--cmc100-border);
    border-radius: var(--cmc100-radius);
    box-shadow: var(--cmc100-shadow);
}

.crypto-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.price-value {
    font-weight: 600;
    color: var(--cmc100-text);
}

.price-change {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Top movers */
.cmc100-top-movers {
    background: white;
    border: 1px solid var(--cmc100-border);
    border-radius: var(--cmc100-radius);
    padding: 20px;
    box-shadow: var(--cmc100-shadow);
}

.movers-section {
    margin-bottom: 24px;
}

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

.movers-section h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--cmc100-text);
}

.movers-list {
    space-y: 8px;
}

.mover-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--cmc100-border);
}

.mover-item:last-child {
    border-bottom: none;
}

.crypto-info {
    display: flex;
    flex-direction: column;
}

.crypto-info .symbol {
    font-weight: 600;
    color: var(--cmc100-text);
}

.crypto-info .name {
    font-size: 12px;
    color: var(--cmc100-text-light);
}

.crypto-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.crypto-stats .price {
    font-weight: 600;
    color: var(--cmc100-text);
}

.crypto-stats .change {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Estados de carga */
.cmc100-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--cmc100-border);
    border-top: 2px solid var(--cmc100-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Notificaciones */
.cmc100-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: 1px solid var(--cmc100-border);
    border-left: 4px solid var(--cmc100-primary);
    border-radius: var(--cmc100-radius);
    padding: 16px 20px;
    box-shadow: var(--cmc100-shadow);
    z-index: 9999;
    max-width: 400px;
}

.cmc100-notification.success {
    border-left-color: var(--cmc100-success);
}

.cmc100-notification.error {
    border-left-color: var(--cmc100-error);
}

.cmc100-notification.warning {
    border-left-color: var(--cmc100-warning);
}

/* Responsive */
@media (max-width: 768px) {
    .cmc100-dashboard-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .dashboard-actions {
        justify-content: center;
    }

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

    .login-actions {
        flex-direction: column;
        align-items: center;
    }

    .modal {
        padding: 10px;
    }

    .modal-content {
        max-height: 95vh;
    }

    .table {
        font-size: 12px;
    }

    .table th,
    .table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .holdings-table-container {
        overflow-x: scroll;
    }

    .table {
        min-width: 600px;
    }

    .cmc100-notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

/* ====================================
   ESTILOS ESPECÍFICOS PARA PÁGINA DEL ÍNDICE
   ==================================== */

/* Contenedor principal del índice */
.cmc100-index-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--cmc100-text);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header del índice */
.index-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--cmc100-border);
}

.index-title h1 {
    margin: 0 0 16px 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cmc100-primary);
    background: linear-gradient(135deg, var(--cmc100-primary), #0096d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.index-description {
    margin: 0;
    font-size: 1.1rem;
    color: var(--cmc100-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de estadísticas */
.index-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 28px 24px;
    border: 1px solid var(--cmc100-border);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cmc100-primary), #0096d6);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-card.main-value {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px solid var(--cmc100-primary);
}

.stat-card.main-value::before {
    height: 6px;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cmc100-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.stat-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--cmc100-primary);
    margin-bottom: 8px;
    line-height: 1.1;
}

.stat-card.main-value .stat-value {
    font-size: 2.75rem;
    background: linear-gradient(135deg, var(--cmc100-primary), #0096d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value.small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cmc100-text);
}

.stat-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

.stat-change small {
    font-weight: 400;
    opacity: 0.8;
    margin-left: 4px;
}

/* Sección de gráfico */
.index-chart-section {
    background: white;
    border: 1px solid var(--cmc100-border);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--cmc100-border);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.chart-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cmc100-text);
}

.chart-controls {
    display: flex;
    gap: 8px;
}

.chart-period-btn {
    padding: 8px 16px;
    border: 1px solid var(--cmc100-border);
    background: white;
    color: var(--cmc100-text);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chart-period-btn:hover {
    background: var(--cmc100-bg-light);
    border-color: var(--cmc100-primary);
}

.chart-period-btn.active {
    background: var(--cmc100-primary);
    color: white;
    border-color: var(--cmc100-primary);
}

.chart-container {
    padding: 28px;
    position: relative;
}

/* Sección de composición */
.index-composition-section {
    background: white;
    border: 1px solid var(--cmc100-border);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
}

.composition-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--cmc100-border);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.composition-header h2 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cmc100-text);
}

.composition-header p {
    margin: 0;
    color: var(--cmc100-text-light);
    font-size: 1rem;
}

.composition-table {
    overflow-x: auto;
}

.cmc100-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cmc100-table th {
    background: var(--cmc100-bg-light);
    padding: 18px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--cmc100-text);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--cmc100-border);
}

.cmc100-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--cmc100-border);
    vertical-align: middle;
}

.cmc100-table tbody tr:hover {
    background: rgba(0, 115, 170, 0.02);
}

.cmc100-table tbody tr:last-child td {
    border-bottom: none;
}

/* Celdas específicas */
.rank-cell {
    text-align: center;
    width: 80px;
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--cmc100-primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

.crypto-cell {
    min-width: 200px;
}

.crypto-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.crypto-symbol {
    font-weight: 700;
    font-size: 1rem;
    color: var(--cmc100-text);
}

.crypto-name {
    font-size: 0.875rem;
    color: var(--cmc100-text-light);
}

.weight-cell {
    min-width: 150px;
}

.weight-bar {
    position: relative;
    background: var(--cmc100-bg-light);
    border-radius: 8px;
    height: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.weight-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--cmc100-primary), #0096d6);
    border-radius: 8px;
    transition: width 0.3s ease;
}

.weight-text {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--cmc100-text);
    margin-left: 12px;
}

.price-cell,
.market-cap-cell {
    text-align: right;
    font-weight: 600;
    color: var(--cmc100-text);
    min-width: 120px;
}

/* Sección de información */
.index-info-section {
    margin-bottom: 40px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.info-card {
    background: white;
    padding: 28px;
    border: 1px solid var(--cmc100-border);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.info-card:hover {
    transform: translateY(-2px);
}

.info-card h3 {
    margin: 0 0 16px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cmc100-primary);
}

.info-card p {
    margin: 0;
    color: var(--cmc100-text);
    line-height: 1.6;
}

/* Estados de error */
.cmc100-error {
    background: white;
    border: 1px solid var(--cmc100-error);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.cmc100-error p {
    margin: 0;
    color: var(--cmc100-error);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive para página del índice */
@media (max-width: 1024px) {
    .stat-card.main-value {
        grid-column: span 1;
    }
    
    .chart-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cmc100-index-page {
        padding: 16px;
    }
    
    .index-title h1 {
        font-size: 2rem;
    }
    
    .index-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-card.main-value .stat-value {
        font-size: 2rem;
    }
    
    .chart-container {
        padding: 20px;
    }
    
    .composition-header,
    .chart-header {
        padding: 20px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .composition-table {
        font-size: 0.8rem;
    }
    
    .cmc100-table th,
    .cmc100-table td {
        padding: 14px 12px;
    }
}

@media (max-width: 480px) {
    .index-title h1 {
        font-size: 1.75rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-card.main-value .stat-value {
        font-size: 1.75rem;
    }
    
    .chart-period-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .cmc100-table {
        min-width: 600px;
    }
    
    .crypto-cell {
        min-width: 150px;
    }
    
    .weight-cell {
        min-width: 120px;
    }
}