body {
    font-family: sans-serif;
}

/* --- Стили для карточек аналитики --- */
.analytics-card {
    background-color: #f3f4f6; /* gray-100 */
    border-radius: 0.75rem; /* 12px */
    padding: 1rem; /* 16px */
    text-align: center;
    display: flex;
    flex-direction: column;
}

.analytics-value {
    font-size: 1.5rem; /* 24px */
    font-weight: 800;
    color: #1f2937; /* gray-800 */
    line-height: 1;
}

.analytics-label {
    font-size: 0.875rem; /* 14px */
    color: #6b7280; /* gray-500 */
    margin-top: 0.25rem; /* 4px */
}

/* --- Стили для элементов в списке истории --- */
.history-item {
    display: flex;
    align-items: center;
    gap: 1rem; /* 16px */
    padding: 0.75rem; /* 12px */
    background-color: #f9fafb; /* gray-50 */
    border-radius: 0.75rem; /* 12px */
}

.history-item img {
    width: 4rem; /* 64px */
    height: 4rem; /* 64px */
    border-radius: 0.5rem; /* 8px */
    object-fit: cover;
    flex-shrink: 0;
}
