/* Make info buttons larger, clean, and centered */
.chart-info-btn, .info-btn, .info-btn.prominent {
    font-size: 1.25rem; /* 20px, leave as is */
    width: 2.2em;
    height: 2.2em;
    min-width: 2.2em;
    min-height: 2.2em;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #1976d2;
    cursor: pointer;
    transition: color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
    margin: 0;
}

.info-btn.prominent {
    font-size: 1.35rem; /* 21.6px, leave as is */
    color: #1976d2;
    border: 2px solid #1976d2;
    background: #e3f2fd;
    box-shadow: 0 2px 10px rgba(25, 118, 210, 0.10);
    width: 2.4em;
    height: 2.4em;
    min-width: 2.4em;
    min-height: 2.4em;
    margin: 0 auto;
}


/* start modal section*/
/* Info Modal Specific Styles */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    overflow: auto;
}

.info-modal.hidden {
    display: none !important;
    opacity: 0;
}

.info-modal.open {
    display: flex !important;
    opacity: 1;
}

.info-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 16px;
    max-width: 700px;
    max-height: 90vh;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 32px rgba(102, 126, 234, 0.15);
    position: relative;
    overflow-y: auto;
    border: 2px solid rgba(118, 75, 162, 0.1);
}

.info-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #764ba2;
    background: rgba(118, 75, 162, 0.1);
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-modal-close:hover {
    background: rgba(118, 75, 162, 0.2);
    color: #5a4687;
    transform: scale(1.1);
}

.info-modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #764ba2;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.info-modal h3 {
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
    border-left: 4px solid #667eea;
    padding-left: 12px;
}

.info-modal ul {
    margin: 10px 0 20px 20px;
    line-height: 1.6;
}

.info-modal li {
    margin-bottom: 8px;
    color: #444;
}

.info-modal strong {
    color: #764ba2;
}

.info-modal abbr {
    color: #667eea;
    text-decoration: underline;
    cursor: help;
}

/* Chart Modal Specific Styles */
.chart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    overflow: auto;
}

.chart-modal.hidden {
    display: none !important;
    opacity: 0;
}

.chart-modal.open {
    display: flex !important;
    opacity: 1;
}

.chart-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    padding: 25px;
    border-radius: 20px;
    max-width: 95%;
    max-height: 90%;
    width: 95%;
    height: 85%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 12px 40px rgba(102, 126, 234, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 3px solid rgba(102, 126, 234, 0.2);
}

.chart-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chart-modal-close:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #5a6fd8;
    transform: scale(1.1);
}

.chart-modal h2 {
    /* margin-top: 0; */ /* Remove or comment out */
    /* margin-bottom: 20px; */ /* Remove or comment out */
    /* text-align: center; */ /* Remove or comment out */
    /* flex-shrink: 0; */ /* Remove or comment out */
    /* font-size: 1.4rem; */ /* Remove or comment out */
    /* font-weight: 700; */ /* Remove or comment out */
    /* color: #667eea; */ /* Remove or comment out */
    /* background: linear-gradient(135deg, #667eea, #764ba2); */ /* Remove or comment out */
    /* -webkit-background-clip: text; */ /* Remove or comment out */
    /* -webkit-text-fill-color: transparent; */ /* Remove or comment out */
    /* background-clip: text; */ /* Remove or comment out */
    display: none; /* Hide the chart modal title */
}

.chart-modal canvas {
    width: 100% !important;
    height: 100% !important;
    flex-grow: 1;
    margin: 0 auto;
    display: block;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: inset 0 2px 8px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

/* Chart Info Modal Specific Styles */
.chart-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1200;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    overflow: auto;
}

.chart-info-modal.hidden {
    display: none !important;
    opacity: 0;
}

.chart-info-modal.open {
    display: flex !important;
    opacity: 1;
}

.chart-info-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 25px;
    border-radius: 12px;
    max-width: 420px;
    max-height: 80vh;
    width: 85%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(118, 75, 162, 0.12);
    position: relative;
    overflow-y: auto;
    border: 1px solid rgba(118, 75, 162, 0.15);
}

.chart-info-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
    font-weight: bold;
    color: #764ba2;
    background: rgba(118, 75, 162, 0.08);
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chart-info-modal-close:hover {
    background: rgba(118, 75, 162, 0.15);
    color: #5a4687;
    transform: scale(1.05);
}

.chart-info-details h3 {
    color: #764ba2;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 15px 0 8px 0;
    border-left: 3px solid #764ba2;
    padding-left: 10px;
}

.chart-info-details ul {
    margin: 8px 0 15px 15px;
    line-height: 1.5;
}

.chart-info-details li {
    margin-bottom: 6px;
    color: #555;
    font-size: 0.95rem;
}

.chart-info-details strong {
    color: #667eea;
}

.chart-info-details abbr {
    color: #764ba2;
    text-decoration: underline dotted;
    cursor: help;
}
/* End of modal section */ 

 

/* Basic Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    margin: 0;
    padding: 0px; /* footer Reset padding */
    min-height: 100vh;
    line-height: 1.6;
    font-size: 1rem; /* Ensure base font-size is 1rem (16px) */
}

header {
    text-align: center;
    margin-bottom: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

header h1 {
    margin: 0;
    font-size: 2.5rem; /* 40px, leave as is */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
}

header p {
    margin: 10px 0 0 0;
    font-size: 1.1rem; /* 17.6px, leave as is */
    opacity: 0.9;
    font-weight: 300;
}

main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#dashboard-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Loading Animation */
#loading-indicator {
    text-align: center;
    color: #666;
    font-size: 1.2rem; /* 19.2px, leave as is */
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Styling */
#error-container {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(238, 90, 82, 0.3);
}

#error-container h3 {
    margin-bottom: 10px;
    font-size: 1.3rem; /* 20.8px, leave as is */
}

#error-container p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

.retry-btn {
    background: white;
    color: #e74c3c;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;  
    transition: all 0.3s ease;
}

.retry-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Table Styling */
#crypto-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

#crypto-table th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;  
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#crypto-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    vertical-align: middle;
    font-size: 1rem;  
}

#crypto-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

#crypto-table tbody tr:hover {
    background-color: #e3f2fd;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Table Wrapper for horizontal scroll */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: transparent;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.crypto-table {
  min-width: 900px;
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}

/* Specific Column Styles */
.crypto-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    min-width: 0;
}

.crypto-name img {
    width: 32px;
    height: 32px;
    min-width: 20px;
    min-height: 20px;
    max-width: 40px;
    max-height: 40px;
    margin-right: 0;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: #f8f9fa;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(102,126,234,0.07);
    display: block;
}

.crypto-name > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.crypto-symbol {
    color: #666;
    font-size: 0.85rem;
    margin-left: 0;
    margin-top: 2px;
    font-weight: 400;
    letter-spacing: 0.5px;
    word-break: break-all;
}

/* Price and Market Cap Styling */
.price {
    font-weight: 700;
    font-size: 1.1rem;  
    color: #2c3e50;
}

.market-cap {
    font-size: 1rem; 
    font-weight: 500;
    color: #34495e;
}

.rank {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem; 
}

/* Price Change Colors */
.positive {
    color: #27ae60;
    font-weight: 700;
    background: rgba(39, 174, 96, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.negative {
    color: #e74c3c;
    font-weight: 700;
    background: rgba(231, 76, 60, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Chart Section Styling */
.top-charts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px; /* Same gap as original charts-section */
    justify-content: space-between;
    margin-bottom: 32px;
}

.chart-card {
    background: rgba(255,255,255,0.98);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(102,126,234,0.08), 0 1.5px 6px rgba(118,75,162,0.06);
    padding: 24px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Adjust flex basis for the new layout */
    flex: 1 1 0; /* Allow items to grow and shrink, initial size 0 */
    min-width: 0; /* Allow shrinking below content size */
}

/* Specific style for the bottom chart container */
#bottom-chart-container {
    width: 100%;
    flex: none; /* Override flex properties for full width */
    margin-top: 0; /* Remove extra top margin if any */
}

.chart-title {
    font-size: 1.15rem; /* 18.4px, leave as is */
    font-weight: 600;
    color: #764ba2;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Style for the new dropdowns */
.chart-card select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1.5px solid #764ba2;
    font-size: 1rem; 
    cursor: pointer;
    background-color: #f8f9fa;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 15px; /* Space below the dropdown */
    align-self: flex-start; /* Align dropdown to the left within the flex container */
}

.chart-card select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102,126,234,0.07);
}

/* Ensure canvases are responsive within their containers */
.chart-card canvas {
    width: 100% !important;
    height: 350px !important; /* Set a default height, will be overridden by Chart.js options if needed */
    max-width: 100%; /* Ensure it doesn't exceed container width */
    min-width: 0;
    margin: 0 auto;
    display: block;
}

/* Historical Chart Section Styling */
#historical-chart-section {
    /* This ID is renamed to #bottom-chart-container, styles moved/updated above */
    display: none; /* Hide the old section */
}

/* Trading Insights Section */
.insights-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102,126,234,0.08);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.insight-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.15);
}

.insight-card h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.1rem; /* 17.6px, leave as is */
    font-weight: 600;
}

/* Sentiment Indicator */
.sentiment-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.sentiment-indicator.bullish {
    color: #27ae60;
}

.sentiment-indicator.bearish {
    color: #e74c3c;
}

.sentiment-indicator.neutral {
    color: #f39c12;
}

.sentiment-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem; 
    margin-right: 10px;
}

.sentiment-badge.bullish {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid #27ae60;
}

.sentiment-badge.bearish {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.sentiment-badge.neutral {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    border: 1px solid #f39c12;
}

/* Trading Signals Dashboard */
.signals-dashboard {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.signal-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.signal-card.bullish {
    border-color: #27ae60;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05), rgba(39, 174, 96, 0.1));
}

.signal-card.bearish {
    border-color: #e74c3c;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(231, 76, 60, 0.1));
}

.signal-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.signal-coin-name {
    font-weight: 700;
    font-size: 1.1rem;  
    margin-bottom: 8px;
}

.signal-strength {
    font-size: 1rem; 
    opacity: 0.8;
    margin-bottom: 5px;
}

.signal-recommendation {
    font-size: 1rem; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Alert Styles */
.alert-item {
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    border-left: 4px solid;
    background: rgba(255,255,255,0.8);
    font-size: 1rem; 
}

.alert-item.high {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.alert-item.medium {
    border-left-color: #f39c12;
    background: rgba(243, 156, 18, 0.05);
}

.alert-item.low {
    border-left-color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

/* Opportunity Cards */
.opportunity-item {
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1rem; 
}

.opportunity-type {
    font-weight: 700;
    font-size: 1rem;  
    text-transform: uppercase;
    margin-bottom: 5px;
    opacity: 0.9;
}

.opportunity-reason {
    line-height: 1.4;
    margin-bottom: 5px;
}

.confidence-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 1rem; 
    font-weight: 600;
    background: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.95);
    margin-top: 5px;
}
/* Add these styles for trading insights: */

/* Mover Items */
.mover-item {
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    border-left: 4px solid #667eea;
    font-size: 1rem; 
    line-height: 1.4;
}

.mover-item strong {
    color: #2c3e50;
    display: inline-block;
    margin-bottom: 5px;
}

/* Sentiment Details */
.sentiment-details {
    font-size: 1rem;  
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

/* Alert and Opportunity Items Enhancement */
.alert-item strong,
.opportunity-item strong {
    font-weight: 700;
    color: #2c3e50;
}

.opportunity-type {
    font-weight: 700;
    font-size: 1rem; 
    text-transform: uppercase;
    margin-bottom: 5px;
    opacity: 0.9;
    color: rgba(255,255,255,0.9);
}

.opportunity-reason {
    line-height: 1.4;
    margin: 5px 0;
    color: rgba(255,255,255,0.95);
}

.confidence-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 1rem;  
    font-weight: 600;
    background: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.95);
    margin-top: 5px;
}
/* Responsive Design for Trading Features */
@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .signals-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .insight-card {
        padding: 15px;
    }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .top-charts-row {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    .chart-card {
        max-width: 100%; /* Allow chart cards to take full width in column layout */
        min-width: 0;
    }
}
@media (max-width: 900px) {
    #dashboard-container {
        padding: 10px;
    }
    .chart-card {
        padding: 16px 6px 12px 6px;
    }
}
@media (max-width: 768px) {
    .charts-section {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
    .chart-card {
        max-width: 100vw;
        min-width: 0;
        padding: 10px 2vw 10px 2vw;
    }
    #crypto-table th, #crypto-table td {
        padding: 10px 4px;
        font-size: 1rem;  
    }
}
@media (max-width: 600px) {
    .chart-title {
        font-size: 1rem;  
    }
    #crypto-table th, #crypto-table td {
        padding: 7px 2px;
        font-size: 1rem;  
    }
}
@media (max-width: 480px) {
    #crypto-table th, #crypto-table td {
        padding: 5px 1px;
        font-size: 1rem;  
    }
}

/* Table horizontal scroll on mobile */
@media (max-width: 900px) {
    #crypto-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        min-width: 600px;
    }
}

/* Animation for table rows */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#crypto-table tbody tr {
    animation: fadeInUp 0.5s ease forwards;
}

/* Staggered animation for rows */
#crypto-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
#crypto-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
#crypto-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
#crypto-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
#crypto-table tbody tr:nth-child(5) { animation-delay: 0.5s; }
#crypto-table tbody tr:nth-child(6) { animation-delay: 0.6s; }
#crypto-table tbody tr:nth-child(7) { animation-delay: 0.7s; }
#crypto-table tbody tr:nth-child(8) { animation-delay: 0.8s; }
#crypto-table tbody tr:nth-child(9) { animation-delay: 0.9s; }
#crypto-table tbody tr:nth-child(10) { animation-delay: 1.0s; }