/* fc_finance_crypto_styles.css */
.crypto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-color: #0f1420;
}

.crypto-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #4fd1c5;
}

.crypto-chart-container {
    background-color: #1E2028;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.crypto-table-container {
    background-color: #1E2028;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.crypto-table {
    width: 100%;
    border-collapse: collapse;
}

.crypto-table th,
.crypto-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #2D3748;
}

.crypto-table th {
    background-color: #2D3748;
    color: #4fd1c5;
}

.crypto-table tr:hover {
    background-color: #2C3E50;
}

.positive {
    color: #48BB78;
}

.negative {
    color: #F56565;
}

@media (max-width: 768px) {
    .crypto-table {
        font-size: 0.8em;
    }
}

.crypto-chart-container {
    background-color: #2c3e50;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.crypto-chart-title {
    color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-left: 10px;
}

#cryptoChart {
    background-color: #171923;
    border-radius: 8px;
    padding: 15px;
}
