/* Auto Crypto Reporter Pro — Bloomberg/Reuters style */

.acr-financial-report {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Georgia, serif;
    color: #111;
    line-height: 1.65;
    /* max-width: 820px; */
    margin: 0 auto;
}

/* Шапка бюллетеня */
.acr-meta-panel {
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #333;
}

/* Сводная строка рынка */
.acr-market-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid #e1e4e6;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.acr-summary-item {
    flex: 1 1 160px;
    padding: 12px 16px;
    border-right: 1px solid #e1e4e6;
    background: #fafafa;
}

.acr-summary-item:last-child {
    border-right: none;
}

.acr-summary-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 4px;
}

.acr-summary-val {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* Цвета изменений */
.acr-change-up   { color: #00875a; }
.acr-change-down { color: #de350b; }

/* Основная таблица */
.acr-table-styled {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.acr-table-styled th {
    background: #111;
    color: #fff;
    text-align: left;
    padding: 9px 10px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.acr-table-styled td {
    padding: 10px;
    border-bottom: 1px solid #e8eaec;
    vertical-align: middle;
}

.acr-table-styled tbody tr:hover td {
    background: #f5f7f9;
}

.acr-table-styled tbody tr:nth-child(even) td {
    background: #fafafa;
}

.acr-table-styled tbody tr:nth-child(even):hover td {
    background: #f0f2f4;
}

/* Блок графика */
.acr-chart-block {
    margin-bottom: 25px;
}

.acr-chart-block h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
    color: #333;
    border-left: 3px solid #111;
    padding-left: 8px;
}

.acr-chart-holder {
    position: relative;
    background: #fff;
    border: 1px solid #e1e4e6;
    border-radius: 4px;
    padding: 12px;
}

/* Плейсхолдер при отсутствии данных */
.acr-chart-placeholder {
    background: #f4f5f7;
    border: 1px dashed #c5cad0;
    border-radius: 4px;
    padding: 24px 16px;
    text-align: center;
    font-size: 13px;
    color: #888;
    font-style: italic;
}

/* Тикер-карточки (для возможного будущего использования) */
.acr-ticker-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.acr-ticker-card {
    background: #f8f9fa;
    border-left: 4px solid #333;
    padding: 12px;
}

.acr-ticker-card.pos { border-left-color: #00875a; }
.acr-ticker-card.neg { border-left-color: #de350b; }

.acr-ticker-name   { font-weight: 700; font-size: 14px; }
.acr-ticker-price  { font-size: 18px; font-weight: 700; margin: 4px 0; }
.acr-ticker-change { font-size: 12px; font-weight: 600; }

/* FAQ-блок */
.acr-faq-section {
    background: #f4f5f7;
    padding: 20px;
    margin-top: 40px;
    border-radius: 4px;
}

.acr-faq-item h4 { margin: 0 0 8px; color: #000; font-size: 14px; }
.acr-faq-item p  { margin-bottom: 20px; font-size: 14px; color: #444; }

/* Адаптив */
@media (max-width: 600px) {
    .acr-meta-panel    { flex-direction: column; gap: 4px; }
    .acr-market-summary { flex-direction: column; }
    .acr-summary-item  { border-right: none; border-bottom: 1px solid #e1e4e6; }
    .acr-table-styled  { font-size: 12px; }
    .acr-table-styled th,
    .acr-table-styled td { padding: 7px 6px; }
}
