/* data-timer.css - стили для универсального таймера обновления данных */

.data-update-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #2d5016;
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
}

/* Темная тема */
[data-theme="dark"] .data-update-timer {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.timer-icon {
    font-size: 1rem;
}

.timer-text {
    font-weight: 500;
    white-space: nowrap;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .data-update-timer {
        order: 3;
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 8px;
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .header-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        align-items: center;
    }
}